Skip to content

Commit ee3cde5

Browse files
youngminssclaude
authored andcommitted
refactor: RegionStep 로딩 UI를 DotsLoader로 변경
Spinner 대신 DotsLoader 사용으로 버튼 배경색과의 대비 개선 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c658557 commit ee3cde5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pageComponents/gathering/create/RegionStep.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useFormContext } from "react-hook-form";
55
import { Layout } from "#/components/layout";
66
import { StepIndicator } from "#/components/stepIndicator";
77
import { Button } from "#/components/button/Button";
8-
import { Spinner } from "#/components/spinner";
8+
import { DotsLoader } from "#/components/dotsLoader";
99
import { useRegionStepValidation } from "#/hooks/gathering";
1010
import { useCreateGathering } from "#/hooks/apis/gathering";
1111
import { isApiError } from "#/utils/api";
@@ -83,7 +83,7 @@ export const RegionStepFooter = ({ onComplete }: RegionStepFooterProps) => {
8383
disabled={!isValid || isPending}
8484
onClick={handleComplete}
8585
>
86-
{isPending ? <Spinner size="small" /> : "완료"}
86+
{isPending ? <DotsLoader /> : "완료"}
8787
</Button>
8888
</div>
8989
</Layout.Footer>

0 commit comments

Comments
 (0)