From 0db35c9a5fafbb5aa0e9460dab5cbb76ef612cc6 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 23 Apr 2024 18:22:31 +0900 Subject: [PATCH] Fix typo in config/index.ts (#5109) seperate -> separate --- packages/twenty-front/src/config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/config/index.ts b/packages/twenty-front/src/config/index.ts index 4dbb196252..4525e814d6 100644 --- a/packages/twenty-front/src/config/index.ts +++ b/packages/twenty-front/src/config/index.ts @@ -10,7 +10,7 @@ const getDefaultUrl = () => { window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1' ) { - // In development environment front and backend usually run on seperate ports + // In development environment front and backend usually run on separate ports // we set the default value to localhost:3000. // It dev context, we use env vars to overwrite it return 'http://localhost:3000';