diff --git a/components/JobDropdown/index.tsx b/components/JobDropdown/index.tsx index bc863821..30a76750 100644 --- a/components/JobDropdown/index.tsx +++ b/components/JobDropdown/index.tsx @@ -41,7 +41,9 @@ const JobDropdown = React.forwardRef( // Set current job from state on mount useEffect(() => { - setCurrentJob(party.job) + if (party.job.id !== '-1') { + setCurrentJob(party.job) + } }, []) // Organize jobs into groups on mount @@ -107,7 +109,6 @@ const JobDropdown = React.forwardRef( return (