Skip to content

Commit

Permalink
Merge pull request #264 from boostcampwm2023/fe/hotfix
Browse files Browse the repository at this point in the history
[FE] Hotfix
  • Loading branch information
MinboyKim authored Dec 6, 2023
2 parents 4a7e0fc + 234e00d commit 8b336b7
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@ import { useGalaxyStore, useCustomStore } from 'shared/store';
export default function GalaxyCustom() {
const navigate = useNavigate();
const { setView } = useViewStore();
const { setSpiral, setDensity, setStart, setThickness, setZDist } =
useGalaxyStore();
const { spiral, density, start, thickness, zDist } = useCustomStore();
const { setSpiral, setStart, setThickness, setZDist } = useGalaxyStore();
const { spiral, start, thickness, zDist } = useCustomStore();

const handleSubmit = () => {
setSpiral(spiral);
setDensity(density);
setStart(start);
setThickness(thickness);
setZDist(zDist);
Expand Down

0 comments on commit 8b336b7

Please sign in to comment.