diff --git a/inlang/source-code/fink2/src/components/SubNavigation.tsx b/inlang/source-code/fink2/src/components/SubNavigation.tsx index 0c3e4ad099..b930d56720 100644 --- a/inlang/source-code/fink2/src/components/SubNavigation.tsx +++ b/inlang/source-code/fink2/src/components/SubNavigation.tsx @@ -21,6 +21,10 @@ const data: { path: string; name: string }[] = [ path: "/history", name: "History", }, + { + path: "/settings", + name: "Settings", + }, ]; const SubNavigation = () => { @@ -58,6 +62,15 @@ const SubNavigation = () => { numUncommittedChanges={pendingChanges.length} /> ); + } else if (item.path === "/settings") { + return ( + + ); } else if (item.path === "/") { return ( {
-
@@ -169,19 +168,6 @@ const SelectProject = () => { return (
-
- - - -
{selectedProjectPath ? ( <>

@@ -285,35 +271,6 @@ export const CreateProjectDialog = (props: { ); }; -const SettingsButton = () => { - const [project] = useAtom(projectAtom); - - return ( - - -

- - - -
- - - ); -}; - const DownloadButton = () => { const [project] = useAtom(projectAtom); const [selectedProjectPath] = useAtom(selectedProjectPathAtom);