Skip to content

Commit

Permalink
[fix] isActiveをfalseに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
TkymHrt committed Nov 16, 2024
1 parent 3439f38 commit 86d64b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/app/camera/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const CameraApp = () => {
todayAssignment | undefined
>();
const [assignments, setAssignments] = useState<todayAssignment[]>([]);
const [isActive, setIsActive] = useState<boolean>(true);
const [isActive, setIsActive] = useState<boolean>(false);
const [isPointDialogOpen, _] = usePointDialog();
const openDialog = useOpenPointDialog();
const [loginUser, setLoginUser] = useState<User>();
Expand Down

0 comments on commit 86d64b0

Please sign in to comment.