aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/pages/Dotfiles.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/pages/Dotfiles.tsx')
-rw-r--r--ui/src/pages/Dotfiles.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/src/pages/Dotfiles.tsx b/ui/src/pages/Dotfiles.tsx
index 29b6b54a..43ecfa2a 100644
--- a/ui/src/pages/Dotfiles.tsx
+++ b/ui/src/pages/Dotfiles.tsx
@@ -5,7 +5,7 @@ import Vars from "@/components/dotfiles/Vars";
enum Section {
Aliases,
Vars,
- Scripts,
+ Snippets,
}
function renderDotfiles(current: Section) {
@@ -14,7 +14,7 @@ function renderDotfiles(current: Section) {
return <Aliases />;
case Section.Vars:
return <Vars />;
- case Section.Scripts:
+ case Section.Snippets:
return <div />;
}
}
@@ -60,9 +60,9 @@ function Tabs({ current, setCurrent }: TabsProps) {
section: Section.Vars,
},
{
- name: "Scripts",
- isCurrent: () => current === Section.Scripts,
- section: Section.Scripts,
+ name: "Snippets",
+ isCurrent: () => current === Section.Snippets,
+ section: Section.Snippets,
},
];