diff --git a/src/components/footer/index.tsx b/src/components/footer/index.tsx
index e7b20aa9..f906247d 100644
--- a/src/components/footer/index.tsx
+++ b/src/components/footer/index.tsx
@@ -131,7 +131,7 @@ const Footer = (props: Props) => {
]}
/>
-
+
diff --git a/src/parts/home/developSection/index.tsx b/src/parts/home/developSection/index.tsx
index 7c23a173..5dbd838f 100644
--- a/src/parts/home/developSection/index.tsx
+++ b/src/parts/home/developSection/index.tsx
@@ -50,12 +50,12 @@ export default function DevelopSection(props: { showMeetup?: boolean }) {
},
];
- const transformRight = (step: 1 | -1) => {
- if (step === -1 && moveRightSteps === 0) {
+ const transformRight = (step: 2 | -2) => {
+ if (step === -2 && moveRightSteps === 0) {
return;
}
- if (step === 1 && moveRightSteps === techStacks.length - 3) {
+ if (step === 2 && moveRightSteps === techStacks.length - 3) {
return;
}
@@ -106,7 +106,7 @@ export default function DevelopSection(props: { showMeetup?: boolean }) {