Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 6c79c7a

Browse files
committed
fix(roles): typo in the role creation notification
* Fix a typo in the "Successfully craeted the role." message of role creation notification. * Replace `craeted` -> `created` Addresses https://github.com/topcoder-platform/taas-app/issues/422
1 parent b11eb0d commit 6c79c7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/thunks/roles.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const createRole = (body) => async (dispatch) => {
3939
const role = extractResponseData(response);
4040
dispatch(actions.createRole(role));
4141
dispatch(actions.setIsModalOpen(false));
42-
makeToast("Successfully craeted the role.", "success");
42+
makeToast("Successfully created the role.", "success");
4343
} catch (error) {
4444
dispatch(
4545
actions.setModalError(`Failed to create the role.\n${error.toString()}`)

0 commit comments

Comments
 (0)