Skip to content

Commit

Permalink
fix: fix login bug again
Browse files Browse the repository at this point in the history
  • Loading branch information
benwainwrightcinch committed Feb 8, 2023
1 parent 2038e17 commit 47eb6de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libs/components/src/organisms/account/account.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FC, useEffect } from 'react';

import { StandardPlan } from '@tnmw/types';
import { Button, Input } from '../../atoms';
import { Button, Input, Link } from '../../atoms';
import { FormSection } from '../../containers';
import { useContext } from 'react';
import { NavigationContext } from '@tnmw/utils';
Expand Down Expand Up @@ -123,9 +123,9 @@ export const Account: FC<AccountProps> = ({
the meals you will be receiving for the week or to make
alternative choices.
</p>
<Button onClick={() => navigate?.('/choose-meals/')} primary>
Make Choices
</Button>
<Link path="/choose-meals/">
<Button primary>Make Choices</Button>
</Link>
</>
) : (
<>
Expand Down

0 comments on commit 47eb6de

Please sign in to comment.