Skip to content

Commit

Permalink
refactor: remove ternary for PageEntered
Browse files Browse the repository at this point in the history
  • Loading branch information
dennyscode committed Oct 2, 2024
1 parent a040a84 commit ad1a3fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/widget/src/AppProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const AppRouter: React.FC<PropsWithChildren<{}>> = ({ children }) => {
<Router>
{children}
{buildUrl ? <URLSearchParamsBuilder /> : null}
{buildUrl ? <PageEntered /> : null}
<PageEntered />
</Router>
);
};

0 comments on commit ad1a3fd

Please sign in to comment.