From db56ac80497c71b71b9f6c76d35dcb3ad3b0cd32 Mon Sep 17 00:00:00 2001
From: Carlos Valente <34649812+cpvalente@users.noreply.github.com>
Date: Sat, 25 Nov 2023 22:28:54 +0100
Subject: [PATCH] style: separe arguments in copy fields (#621)
---
apps/client/src/features/event-editor/EventEditor.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/client/src/features/event-editor/EventEditor.tsx b/apps/client/src/features/event-editor/EventEditor.tsx
index 1163b9a01..f9fe8f4cc 100644
--- a/apps/client/src/features/event-editor/EventEditor.tsx
+++ b/apps/client/src/features/event-editor/EventEditor.tsx
@@ -73,8 +73,8 @@ export default function EventEditor() {
handleSubmit={handleSubmit}
>
{event.id}
- {`/ontime/gotoid/${event.id}`}
- {`/ontime/gotocue/${event.cue}`}
+ {`/ontime/gotoid "${event.id}"`}
+ {`/ontime/gotocue "${event.cue}"`}
);