1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-29 23:59:37 +02:00

fix link to applications menu

This commit is contained in:
François Darveau 2021-12-11 23:02:39 -05:00
parent 1449f003c4
commit 82f8e9c036

View file

@ -55,14 +55,14 @@ export const AppGrid = (props: Props): JSX.Element => {
apps = ( apps = (
<Message> <Message>
There are no pinned categories. You can pin them from the{' '} There are no pinned categories. You can pin them from the{' '}
<Link to="/apps">/apps</Link> menu <Link to="/applications">/applications</Link> menu
</Message> </Message>
); );
} else { } else {
apps = ( apps = (
<Message> <Message>
You don't have any apps. You can add a new one from{' '} You don't have any apps. You can add a new one from{' '}
<Link to="/apps">/apps</Link> menu <Link to="/applications">/applications</Link> menu
</Message> </Message>
); );
} }