Fix typo in config/index.ts (#5109)

seperate -> separate
This commit is contained in:
Ikko Eltociear Ashimine 2024-04-23 18:22:31 +09:00 committed by GitHub
parent fa4670b14d
commit 0db35c9a5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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';