Skip to content

Commit

Permalink
chore: remove "mode" prop
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek committed Nov 19, 2024
1 parent da9dc11 commit 4ac82e4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ export const CreateReleasePlanTemplate = () => {

return (
<TemplateForm
mode='create'
name={name}
setName={setName}
description={description}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export const EditReleasePlanTemplate = () => {

return (
<TemplateForm
mode='edit'
name={name}
setName={setName}
description={description}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const StyledForm = styled('form')(() => ({
}));

interface ITemplateFormProps {
mode: 'create' | 'edit';
name: string;
setName: React.Dispatch<React.SetStateAction<string>>;
description: string;
Expand Down

0 comments on commit 4ac82e4

Please sign in to comment.