Skip to content

Commit

Permalink
Merge pull request #61 from ademilter/f/main
Browse files Browse the repository at this point in the history
fix: wrong path
  • Loading branch information
ademilter authored Mar 10, 2023
2 parents 025141e + 7979917 commit 413f8d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { motion } from "framer-motion";
import useTranslation from "next-translate/useTranslation";
import setLanguage from "next-translate/setLanguage";
import Link from "next/link";
import SettingsLangItem from "@/components/settings-lang-item";
import SettingsLangItem from "@/components/settings-item";
import { cx } from "@/lib/utils";

export default function Settings() {
Expand Down
2 changes: 1 addition & 1 deletion pages/settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function Settings() {
const onChangeTimeFormat = async (e: React.ChangeEvent<HTMLInputElement>) => {
await changeSettings({
...settings,
timeFormat: e.target.value as typeof settings.timeFormat
timeFormat: e.target.value as typeof settings.timeFormat,
});
localStorage.setItem(LOCAL_KEYS.TimeFormat, e.target.value);
};
Expand Down

1 comment on commit 413f8d9

@vercel
Copy link

@vercel vercel bot commented on 413f8d9 Mar 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vakitler – ./

vakitler.vercel.app
vakitler.app
vakitler-git-main-ademilter.vercel.app
vakitler-ademilter.vercel.app

Please sign in to comment.