Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comment #1980

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/helpers/CryptoHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const CryptoHelper = {
const decryptionTime: number = new Date().getTime() - startTime.getTime() - encryptionTime;
console.debug('[ENCRYPTION / DECRYPTION DECRYPTION DONE] - ' + decryptionTime / 1000 + ' secs');
},
// To output messge payload if required
// To output message payload if required
outputMsgPayload: async function ({
secret,
subject,
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/EPNSCoreHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const EPNSCoreHelper = {
const enableLogs: number = 0;

return new Promise((resolve, reject) => {
// Split Channel Identity, delimeter of identity is "+"
// Split Channel Identity, delimiter of identity is "+"
if (!identity) {
reject(`There is no identity file for channel: ${channel}`);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const UserChannelDashboard: FC<UserChannelDashboardProps> = ({
* 2. Check If the Filtered alias exists and is verified or not
* 3. If verified, then it is an active network (means: Channel is present and is active on this chain)
* 4. If not, then it is not on active network -> then we pass filtered alias details to the ChannelDashboardNullChain to check if loading or not
* 5. We check that alias is present and is_alias_verified is 0 (alias not verified), then we show laoding state
* 5. We check that alias is present and is_alias_verified is 0 (alias not verified), then we show loading state
* 6. If alias is not present, then we show add new chain button
*/

Expand Down
2 changes: 1 addition & 1 deletion src/redux/slices/adminSlice.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* This file helps us to maintain the state of the logged in user user(if they have an account)
* as well as the privilidges the logged in user has
* as well as the privileges the logged in user has
*/

// External Packages
Expand Down