Skip to content

Commit

Permalink
fix(apply): navigation send data type error
Browse files Browse the repository at this point in the history
  • Loading branch information
kimulchan committed Oct 24, 2022
1 parent ca917f6 commit b18368d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion services/apply/src/main/components/AdditionalApplyItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ const AdditionalApplyItem = ({ daliy, applyKind, linkTo }: AdditionalApplyItemPr
<AdditionalApplyCardContainer
onClick={(e) => {
e.preventDefault();
sendBridgeEvent('navigate', linkTo, ({ data }) => router.push(data));
sendBridgeEvent('navigate', { title: applyKind, url: linkTo }, ({ data }) =>
router.push(data.url),
);
}}
href={linkTo}>
<FlexCol gap={12}>
Expand Down

0 comments on commit b18368d

Please sign in to comment.