We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e566054 commit b8610beCopy full SHA for b8610be
1 file changed
src/widgets/main/SloganSecondSection/index.tsx
@@ -37,7 +37,7 @@ const SLOGAN_START = new Date(`${SLOGAN_YEAR}-05-04T00:00:00+09:00`);
37
const SLOGAN_END = new Date(`${SLOGAN_YEAR}-05-08T17:59:59+09:00`);
38
39
const SloganSecondSection = () => {
40
- const R = useRouter();
+ const router = useRouter();
41
42
const [isSloganPeriod, setIsSloganPeriod] = React.useState(false);
43
@@ -86,7 +86,7 @@ const SloganSecondSection = () => {
86
</div>
87
<Button
88
type="button"
89
- onClick={() => R.push("/slogan")}
+ onClick={() => router.push("/slogan")}
90
className={cn("my-[24px] mobile:mb-[12px] px-28")}
91
disabled={!isSloganPeriod}
92
>
0 commit comments