File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/pageComponents/gathering/create Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { useFormContext } from "react-hook-form";
55import { Layout } from "#/components/layout" ;
66import { StepIndicator } from "#/components/stepIndicator" ;
77import { Button } from "#/components/button/Button" ;
8- import { Spinner } from "#/components/spinner " ;
8+ import { DotsLoader } from "#/components/dotsLoader " ;
99import { useRegionStepValidation } from "#/hooks/gathering" ;
1010import { useCreateGathering } from "#/hooks/apis/gathering" ;
1111import { 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 >
You can’t perform that action at this time.
0 commit comments