Skip to content

Commit

Permalink
Merge pull request #64 from ArcherBullseye/master
Browse files Browse the repository at this point in the history
Fixing typo in Chat Errors
  • Loading branch information
jpteodosio committed May 12, 2021
2 parents a0af4f3 + 8a3d8db commit 675994d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/presentation/pages/chat/Chat.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const useChatController = () => {

chatDispatch({ type: ACTION_TYPE.newChat, payload: false });
} catch (error) {
chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Chat messages require 0.006 Snart.' });
chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Chat messages require 0.006 Smart.' });
}
};

Expand Down Expand Up @@ -150,7 +150,7 @@ export const useChatController = () => {
chatDispatch({ type: ACTION_TYPE.initialLoading, payload: false });
chatDispatch({ type: ACTION_TYPE.newChat, payload: false });
} catch (error) {
chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Chat invites require 0.011 Snart.' });
chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Chat invites require 0.011 Smart.' });
}
};

Expand Down Expand Up @@ -192,7 +192,7 @@ export const useChatController = () => {
chatDispatch({ type: ACTION_TYPE.initialLoading, payload: false });
chatDispatch({ type: ACTION_TYPE.newChat, payload: false });
} catch (error) {
chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Accepting an invite require 0.006 Snart' });
chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Accepting an invite require 0.006 Smart' });
}
}

Expand Down

0 comments on commit 675994d

Please sign in to comment.