diff --git a/packages/bruno-app/src/components/Environments/EnvironmentSettings/CreateEnvironment/index.js b/packages/bruno-app/src/components/Environments/EnvironmentSettings/CreateEnvironment/index.js index 753d0fb2..d412687e 100644 --- a/packages/bruno-app/src/components/Environments/EnvironmentSettings/CreateEnvironment/index.js +++ b/packages/bruno-app/src/components/Environments/EnvironmentSettings/CreateEnvironment/index.js @@ -27,7 +27,7 @@ const CreateEnvironment = ({ collection, onClose }) => { toast.success('Environment created in collection'); onClose(); }) - .catch(() => toast.error('An error occured while created the environment')); + .catch(() => toast.error('An error occurred while created the environment')); } }); diff --git a/packages/bruno-app/src/components/Environments/EnvironmentSettings/DeleteEnvironment/index.js b/packages/bruno-app/src/components/Environments/EnvironmentSettings/DeleteEnvironment/index.js index c9a63c57..8ca6fc41 100644 --- a/packages/bruno-app/src/components/Environments/EnvironmentSettings/DeleteEnvironment/index.js +++ b/packages/bruno-app/src/components/Environments/EnvironmentSettings/DeleteEnvironment/index.js @@ -14,7 +14,7 @@ const DeleteEnvironment = ({ onClose, environment, collection }) => { toast.success('Environment deleted successfully'); onClose(); }) - .catch(() => toast.error('An error occured while deleting the environment')); + .catch(() => toast.error('An error occurred while deleting the environment')); }; return ( diff --git a/packages/bruno-app/src/components/Environments/EnvironmentSettings/EnvironmentList/EnvironmentDetails/EnvironmentVariables/index.js b/packages/bruno-app/src/components/Environments/EnvironmentSettings/EnvironmentList/EnvironmentDetails/EnvironmentVariables/index.js index 2f1d05f6..74862676 100644 --- a/packages/bruno-app/src/components/Environments/EnvironmentSettings/EnvironmentList/EnvironmentDetails/EnvironmentVariables/index.js +++ b/packages/bruno-app/src/components/Environments/EnvironmentSettings/EnvironmentList/EnvironmentDetails/EnvironmentVariables/index.js @@ -23,7 +23,7 @@ const EnvironmentVariables = ({ environment, collection }) => { type: 'CHANGES_SAVED' }); }) - .catch(() => toast.error('An error occured while saving the changes')); + .catch(() => toast.error('An error occurred while saving the changes')); }; const addVariable = () => { diff --git a/packages/bruno-app/src/components/Environments/EnvironmentSettings/RenameEnvironment/index.js b/packages/bruno-app/src/components/Environments/EnvironmentSettings/RenameEnvironment/index.js index a79bff49..dc928d4c 100644 --- a/packages/bruno-app/src/components/Environments/EnvironmentSettings/RenameEnvironment/index.js +++ b/packages/bruno-app/src/components/Environments/EnvironmentSettings/RenameEnvironment/index.js @@ -27,7 +27,7 @@ const RenameEnvironment = ({ onClose, environment, collection }) => { toast.success('Environment renamed successfully'); onClose(); }) - .catch(() => toast.error('An error occured while renaming the environment')); + .catch(() => toast.error('An error occurred while renaming the environment')); } }); diff --git a/packages/bruno-app/src/components/RequestPane/GraphQLRequestPane/index.js b/packages/bruno-app/src/components/RequestPane/GraphQLRequestPane/index.js index 4442be42..773d8011 100644 --- a/packages/bruno-app/src/components/RequestPane/GraphQLRequestPane/index.js +++ b/packages/bruno-app/src/components/RequestPane/GraphQLRequestPane/index.js @@ -114,7 +114,7 @@ const GraphQLRequestPane = ({ item, collection, leftPaneWidth, onSchemaLoad, tog const focusedTab = find(tabs, (t) => t.uid === activeTabUid); if (!focusedTab || !focusedTab.uid || !focusedTab.requestPaneTab) { - return
An error occured!
; + return
An error occurred!
; } const getTabClassname = (tabName) => { diff --git a/packages/bruno-app/src/components/RequestPane/GraphQLRequestPane/useGraphqlSchema.js b/packages/bruno-app/src/components/RequestPane/GraphQLRequestPane/useGraphqlSchema.js index 308a65e6..7cfe7f95 100644 --- a/packages/bruno-app/src/components/RequestPane/GraphQLRequestPane/useGraphqlSchema.js +++ b/packages/bruno-app/src/components/RequestPane/GraphQLRequestPane/useGraphqlSchema.js @@ -40,7 +40,7 @@ const useGraphqlSchema = (endpoint, environment) => { .catch((err) => { setIsLoading(false); setError(err); - toast.error('Error occured while loading GraphQL Schema'); + toast.error('Error occurred while loading GraphQL Schema'); }); }; diff --git a/packages/bruno-app/src/components/RequestPane/HttpRequestPane/index.js b/packages/bruno-app/src/components/RequestPane/HttpRequestPane/index.js index 052689fb..caace776 100644 --- a/packages/bruno-app/src/components/RequestPane/HttpRequestPane/index.js +++ b/packages/bruno-app/src/components/RequestPane/HttpRequestPane/index.js @@ -62,7 +62,7 @@ const HttpRequestPane = ({ item, collection, leftPaneWidth }) => { const focusedTab = find(tabs, (t) => t.uid === activeTabUid); if (!focusedTab || !focusedTab.uid || !focusedTab.requestPaneTab) { - return
An error occured!
; + return
An error occurred!
; } const getTabClassname = (tabName) => { diff --git a/packages/bruno-app/src/components/RequestTabPanel/index.js b/packages/bruno-app/src/components/RequestTabPanel/index.js index 65ae097b..f719eb0f 100644 --- a/packages/bruno-app/src/components/RequestTabPanel/index.js +++ b/packages/bruno-app/src/components/RequestTabPanel/index.js @@ -112,7 +112,7 @@ const RequestTabPanel = () => { } if (!focusedTab || !focusedTab.uid || !focusedTab.collectionUid) { - return
An error occured!
; + return
An error occurred!
; } let collection = find(collections, (c) => c.uid === focusedTab.collectionUid); diff --git a/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/CloneCollectionItem/index.js b/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/CloneCollectionItem/index.js index d23dca71..96a1da61 100644 --- a/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/CloneCollectionItem/index.js +++ b/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/CloneCollectionItem/index.js @@ -28,7 +28,7 @@ const CloneCollectionItem = ({ collection, item, onClose }) => { onClose(); }) .catch((err) => { - toast.error(err ? err.message : 'An error occured while cloning the request'); + toast.error(err ? err.message : 'An error occurred while cloning the request'); }); } }); diff --git a/packages/bruno-app/src/components/Sidebar/Collections/Collection/RemoveCollection/index.js b/packages/bruno-app/src/components/Sidebar/Collections/Collection/RemoveCollection/index.js index ec4cfae4..c151de89 100644 --- a/packages/bruno-app/src/components/Sidebar/Collections/Collection/RemoveCollection/index.js +++ b/packages/bruno-app/src/components/Sidebar/Collections/Collection/RemoveCollection/index.js @@ -13,7 +13,7 @@ const RemoveCollection = ({ onClose, collection }) => { toast.success('Collection removed'); onClose(); }) - .catch(() => toast.error('An error occured while removing the collection')); + .catch(() => toast.error('An error occurred while removing the collection')); }; return ( diff --git a/packages/bruno-app/src/components/Sidebar/Collections/CreateOrOpenCollection/index.js b/packages/bruno-app/src/components/Sidebar/Collections/CreateOrOpenCollection/index.js index 09933cfa..0feaa45c 100644 --- a/packages/bruno-app/src/components/Sidebar/Collections/CreateOrOpenCollection/index.js +++ b/packages/bruno-app/src/components/Sidebar/Collections/CreateOrOpenCollection/index.js @@ -19,7 +19,7 @@ const CreateOrOpenCollection = () => { const handleOpenCollection = () => { dispatch(openCollection()).catch( - (err) => console.log(err) && toast.error('An error occured while opening the collection') + (err) => console.log(err) && toast.error('An error occurred while opening the collection') ); }; const CreateLink = () => ( diff --git a/packages/bruno-app/src/components/Sidebar/CreateCollection/index.js b/packages/bruno-app/src/components/Sidebar/CreateCollection/index.js index c5e16340..8a65bedb 100644 --- a/packages/bruno-app/src/components/Sidebar/CreateCollection/index.js +++ b/packages/bruno-app/src/components/Sidebar/CreateCollection/index.js @@ -36,7 +36,7 @@ const CreateCollection = ({ onClose }) => { toast.success('Collection created'); onClose(); }) - .catch(() => toast.error('An error occured while creating the collection')); + .catch(() => toast.error('An error occurred while creating the collection')); } }); diff --git a/packages/bruno-app/src/components/Sidebar/NewFolder/index.js b/packages/bruno-app/src/components/Sidebar/NewFolder/index.js index f73c3c16..9245d7ab 100644 --- a/packages/bruno-app/src/components/Sidebar/NewFolder/index.js +++ b/packages/bruno-app/src/components/Sidebar/NewFolder/index.js @@ -32,7 +32,7 @@ const NewFolder = ({ collection, item, onClose }) => { onSubmit: (values) => { dispatch(newFolder(values.folderName, collection.uid, item ? item.uid : null)) .then(() => onClose()) - .catch((err) => toast.error(err ? err.message : 'An error occured while adding the request')); + .catch((err) => toast.error(err ? err.message : 'An error occurred while adding the request')); } }); diff --git a/packages/bruno-app/src/components/Sidebar/NewRequest/index.js b/packages/bruno-app/src/components/Sidebar/NewRequest/index.js index dc70b69c..f5753ace 100644 --- a/packages/bruno-app/src/components/Sidebar/NewRequest/index.js +++ b/packages/bruno-app/src/components/Sidebar/NewRequest/index.js @@ -56,7 +56,7 @@ const NewRequest = ({ collection, item, isEphemeral, onClose }) => { ); onClose(); }) - .catch((err) => toast.error(err ? err.message : 'An error occured while adding the request')); + .catch((err) => toast.error(err ? err.message : 'An error occurred while adding the request')); } else { dispatch( newHttpRequest({ @@ -69,7 +69,7 @@ const NewRequest = ({ collection, item, isEphemeral, onClose }) => { }) ) .then(() => onClose()) - .catch((err) => toast.error(err ? err.message : 'An error occured while adding the request')); + .catch((err) => toast.error(err ? err.message : 'An error occurred while adding the request')); } } }); diff --git a/packages/bruno-app/src/components/Sidebar/TitleBar/index.js b/packages/bruno-app/src/components/Sidebar/TitleBar/index.js index 1d8d74f5..daaf1f45 100644 --- a/packages/bruno-app/src/components/Sidebar/TitleBar/index.js +++ b/packages/bruno-app/src/components/Sidebar/TitleBar/index.js @@ -46,7 +46,7 @@ const TitleBar = () => { const handleOpenCollection = () => { dispatch(openCollection()).catch( - (err) => console.log(err) && toast.error('An error occured while opening the collection') + (err) => console.log(err) && toast.error('An error occurred while opening the collection') ); }; diff --git a/packages/bruno-app/src/components/Welcome/index.js b/packages/bruno-app/src/components/Welcome/index.js index b3531265..625f18ab 100644 --- a/packages/bruno-app/src/components/Welcome/index.js +++ b/packages/bruno-app/src/components/Welcome/index.js @@ -19,7 +19,7 @@ const Welcome = () => { const handleOpenCollection = () => { dispatch(openCollection()).catch( - (err) => console.log(err) && toast.error('An error occured while opening the collection') + (err) => console.log(err) && toast.error('An error occurred while opening the collection') ); }; diff --git a/packages/bruno-electron/src/app/collections.js b/packages/bruno-electron/src/app/collections.js index 01de9c4b..77cf86c2 100644 --- a/packages/bruno-electron/src/app/collections.js +++ b/packages/bruno-electron/src/app/collections.js @@ -67,7 +67,7 @@ const openCollection = async (win, watcher, collectionPath, options = {}) => { } catch (err) { if (!options.dontSendDisplayErrors) { win.webContents.send('main:display-error', { - error: err.message || 'An error occured while opening the local collection' + error: err.message || 'An error occurred while opening the local collection' }); } }