Skip to content

Commit

Permalink
feature/deseng674: Removed unused useState set functions in Authoring…
Browse files Browse the repository at this point in the history
…Tab component.
  • Loading branch information
jareth-whitney committed Aug 15, 2024
1 parent a363bf6 commit c59e3f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions met-web/src/components/engagement/admin/view/AuthoringTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export const AuthoringTab = () => {
const defaultFeedbackMethods = getAuthoringValues(defaultAuthoringValue, feedbackTitles, true, 1000);

// Set useStates. When data is imported, it will be set with setSectionValues and setFeedbackMethods.
const [sectionValues, setSectionValues] = useState(defaultSectionValues);
const [feedbackMethods, setFeedbackMethods] = useState(defaultFeedbackMethods);
const [sectionValues] = useState(defaultSectionValues);
const [feedbackMethods] = useState(defaultFeedbackMethods);
const [requiredSectionsCompleted, setRequiredSectionsCompleted] = useState(false);
const [feedbackCompleted, setFeedbackCompleted] = useState(false);

Expand Down

0 comments on commit c59e3f4

Please sign in to comment.