Skip to content

Commit b8610be

Browse files
committed
refactor: router 변수명 통일
1 parent e566054 commit b8610be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/widgets/main/SloganSecondSection

src/widgets/main/SloganSecondSection/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const SLOGAN_START = new Date(`${SLOGAN_YEAR}-05-04T00:00:00+09:00`);
3737
const SLOGAN_END = new Date(`${SLOGAN_YEAR}-05-08T17:59:59+09:00`);
3838

3939
const SloganSecondSection = () => {
40-
const R = useRouter();
40+
const router = useRouter();
4141

4242
const [isSloganPeriod, setIsSloganPeriod] = React.useState(false);
4343

@@ -86,7 +86,7 @@ const SloganSecondSection = () => {
8686
</div>
8787
<Button
8888
type="button"
89-
onClick={() => R.push("/slogan")}
89+
onClick={() => router.push("/slogan")}
9090
className={cn("my-[24px] mobile:mb-[12px] px-28")}
9191
disabled={!isSloganPeriod}
9292
>

0 commit comments

Comments
 (0)