Skip to content

Commit

Permalink
Derestrict single page
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranjprice101 committed Jun 21, 2024
1 parent 8248b16 commit 722a7bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ createRoute(
'/fia', // route the link should link to
1, // how high up in the section should your link be - ascending order
'Data help text', // help text renders a tooltip in the site tour for this link
true // whether the link should be visible to unauthenticated users
false // whether the link should be visible to unauthenticated users
);
createRoute('Reductions', 'Instruments', '/fia/instruments', 2, 'Data help text', true);
createRoute('Reductions', 'Reduction history', '/fia/reduction-history/ALF', 3, 'Data help text', true);
createRoute('Reductions', 'Instruments', '/fia/instruments', 2, 'Data help text', false);
createRoute('Reductions', 'Reduction history', '/fia/reduction-history/ALF', 3, 'Data help text', false);

// Single-SPA bootstrap methods have no idea what type of inputs may be
// pushed down from the parent app
Expand Down

0 comments on commit 722a7bb

Please sign in to comment.