Skip to content

Commit

Permalink
throwOnError: trueを消した (デフォルトがtrueなので)
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-20 committed Jan 21, 2024
1 parent b869566 commit 0107a4b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export const AddNewClipForm: FC = () => {

return [newResult, ...prev];
},
throwOnError: true,
},
);
} catch (err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ const ActionSection: FC<ActionSectionProps> = ({ item }) => {

return result;
},
throwOnError: true,
},
);

Expand All @@ -106,7 +105,6 @@ const ActionSection: FC<ActionSectionProps> = ({ item }) => {

return [newResult, ...prev];
},
throwOnError: true,
},
);
} catch (err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ const ActionSection: FC<ActionSectionProps> = ({ clip }) => {

return result;
},
throwOnError: true,
},
);

Expand All @@ -105,7 +104,6 @@ const ActionSection: FC<ActionSectionProps> = ({ clip }) => {

return [newResult, ...prev];
},
throwOnError: true,
},
);
} catch (err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ const ActionSection: FC<ActionSectionProps> = ({ clip }) => {

return result;
},
throwOnError: true,
},
);

Expand All @@ -143,7 +142,6 @@ const ActionSection: FC<ActionSectionProps> = ({ clip }) => {

return [newResult, ...prev];
},
throwOnError: true,
},
);
} catch (err) {
Expand Down Expand Up @@ -182,7 +180,6 @@ const ActionSection: FC<ActionSectionProps> = ({ clip }) => {

return result;
},
throwOnError: true,
},
);

Expand All @@ -204,7 +201,6 @@ const ActionSection: FC<ActionSectionProps> = ({ clip }) => {

return [newResult, ...prev];
},
throwOnError: true,
},
);
} catch (err) {
Expand Down

0 comments on commit 0107a4b

Please sign in to comment.