Skip to content

Commit

Permalink
remove comment out of general settings inherited from main
Browse files Browse the repository at this point in the history
  • Loading branch information
RODO94 committed Jul 3, 2024
1 parent 0509d4a commit f1c70fc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions editor.planx.uk/src/routes/teamSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const teamSettingsRoutes = compose(

if (!isAuthorised)
throw new NotFoundError(
`User does not have access to ${req.originalUrl}`,
`User does not have access to ${req.originalUrl}`
);

return route(async (req) => ({
Expand All @@ -47,17 +47,17 @@ const teamSettingsRoutes = compose(
route: "design",
Component: DesignSettings,
},
// {
// name: "General",
// route: "general",
// Component: GeneralSettings,
// },
{
name: "General",
route: "general",
Component: GeneralSettings,
},
]}
/>
),
}));
}),
}),
})
);

export default teamSettingsRoutes;

0 comments on commit f1c70fc

Please sign in to comment.