Skip to content

Commit

Permalink
chore: set edit as default
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-ae committed Dec 30, 2024
1 parent dc87730 commit 15f3fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/TicketEditor/TicketEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const TicketEditor = observer(
const [selectedVersion, setSelectedVersion] = useState<number>(latestTicket?.version as number);
const [versionTicketData, setVersionTicketData] = useState<Ticket>(latestTicket as Ticket);
const [isCopying, setIsCopying] = useState(false);
const [activeMode, setActiveMode] = useState<'preview' | 'edit'>('preview');
const [activeMode, setActiveMode] = useState<'preview' | 'edit'>('edit');
const { main } = useStores();
const ui = uiStore;

Expand Down

0 comments on commit 15f3fce

Please sign in to comment.