From 6f92f6aae1e5c67445031a9893cd90c82b65f540 Mon Sep 17 00:00:00 2001 From: Rohit Date: Wed, 26 Feb 2025 14:52:47 +0530 Subject: [PATCH] feat: rm trailing quotes --- src/components/robot/Recordings.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/robot/Recordings.tsx b/src/components/robot/Recordings.tsx index 62923cf5..7b062323 100644 --- a/src/components/robot/Recordings.tsx +++ b/src/components/robot/Recordings.tsx @@ -65,13 +65,13 @@ export const Recordings = ({ if (authStatus === 'success' && robotId) { notify(authStatus, t("recordingtable.notifications.auth_success")); - handleNavigate(`/robots/${robotId}/integrate`, robotId, "", []);'' + handleNavigate(`/robots/${robotId}/integrate`, robotId, "", []); } if (airtableAuthStatus === 'success' && robotId) { notify(airtableAuthStatus, t("recordingtable.notifications.auth_success")); - handleNavigate(`/robots/${robotId}/integrate`, robotId, "", []);'' + handleNavigate(`/robots/${robotId}/integrate`, robotId, "", []); } }, []);