diff options
author | Steve Moyer <smoyer1@selesy.com> | 2023-02-16 09:45:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-16 09:45:53 -0500 |
commit | 55e4046b4bb77139e25ee6ad7adcfc829d4e6ba5 (patch) | |
tree | 2c09f86115b08ca3484f7b1b69f4836daf18f693 /webui/src | |
parent | 1ae31b342b57ace44131f5ecd03c506814a25e62 (diff) | |
parent | 92f632114b4b6b3892d7872b21844283631c73c4 (diff) | |
download | git-bug-55e4046b4bb77139e25ee6ad7adcfc829d4e6ba5.tar.gz |
Merge pull request #1008 from yarikoptic/enh-codespell
Fix typos, provide configuration and github workflow for codespell
Diffstat (limited to 'webui/src')
-rw-r--r-- | webui/src/components/Header/Header.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/Header/Header.tsx b/webui/src/components/Header/Header.tsx index 961696d7..0bbbe3bb 100644 --- a/webui/src/components/Header/Header.tsx +++ b/webui/src/components/Header/Header.tsx @@ -69,7 +69,7 @@ function Header() { const location = useLocation(); // Prevents error of invalid tab selection in <Tabs> - // Will return a valid tab path or false if path is unkown. + // Will return a valid tab path or false if path is unknown. function highlightTab() { const validTabs = ['/', '/code', '/pulls', '/settings']; const tab = validTabs.find((tabPath) => tabPath === location.pathname); |