Skip to content

Commit beecbf6

Browse files
committed
Fix duplicate isReadOnly declaration blocking builds
Fixed a duplicate isReadOnly variable declaration in TriggerForm.tsx (lines 37 and 46) that was causing esbuild to fail with error: "The symbol 'isReadOnly' has already been declared" This was preventing Phoenix from rebuilding assets, blocking all development work on the collaborative editor.
1 parent a7cfb90 commit beecbf6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

assets/js/collaborative-editor/components/inspector/TriggerForm.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export function TriggerForm({ trigger }: TriggerFormProps) {
4343
const sessionContext = useSessionContext();
4444
const { provider } = useSession();
4545
const channel = provider?.channel;
46-
const { isReadOnly } = useWorkflowReadOnly();
4746

4847
// Get active trigger auth methods from workflow store
4948
const activeTriggerAuthMethods = useWorkflowState(

0 commit comments

Comments
 (0)