Skip to content

Commit

Permalink
Merge branch 'master' into key-flow-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron authored Mar 11, 2024
2 parents 0e46fc6 + 6356cf3 commit 9297237
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
},
"typescript.preferences.importModuleSpecifier": "non-relative",
"editor.defaultFormatter": "esbenp.prettier-vscode"
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/Navbar/NavbarLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function NavbarLink({ children, end = false, href, target }: Props) {
classNames(
"flex items-center font-semibold hover:text-gray-600 dark:hover:text-neutral-400 transition px-1 text-md",
isActive
? " text-gray-800 dark:text-neutral-200"
: " text-gray-400 dark:text-gray-600"
? "text-gray-800 dark:text-neutral-200"
: "text-gray-400 dark:text-neutral-600"
)
}
>
Expand Down

0 comments on commit 9297237

Please sign in to comment.