Skip to content
Merged
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/i18n/en/delegator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const translation = {
existingDelegationTooltip: 'The amount of tokens that you have already delegated to this Node Operator',
existingDelegation: 'Your Existing Delegation',
selectTooltip:
'Select the source of the funds that you would like to delegate. This can be directly from your wallet, or by re-delegating tokens from an exisiting delegation.',
'Select the source of the funds that you would like to delegate. This can be directly from your wallet, or by re-delegating tokens from an existing delegation.',
delegateFromYourselfInfo: 'Once confirmed, your funds will be delegated to {{indexerName}} from the next era.',
redelegateInfo:
'Once confirmed, your funds will be re-delegated from operator {{reIndexerName}} to {{indexerName}} from the next era.',
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/en/indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const translation = {
socialCredibility: 'social credibility',
tooltip: {
rank: 'The ranking of the Node Operator compared to all other Node Operators based of a variety of factors. A ranking of 1 means that they have historically operated as the best Node Operator, however this does not indicate future performance.',
uptime: 'Based on the avaliability of an Node Operator’s proxy service endpoint overtime',
uptime: 'Based on the availability of an Node Operator’s proxy service endpoint overtime',
ownStake: `The percentage of all staked ${TOKEN} that is the Node Operator’s own SQT. Higher score is better.`,
delegated:
'The percentage of the Node Operator’s total delegation that is the Node Operator’s own SQT. Higher score is better.',
Expand Down
4 changes: 2 additions & 2 deletions src/utils/limitation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ export const makeCacheKey = (
options: {
prefix?: string;
suffix?: string;
type?: string; // maybe need to make a const varible. gerneral/sqt/flexplan such as.
type?: string; // maybe need to make a const varible. general/sqt/flexplan such as.
} = {},
) => {
const { prefix = import.meta.env.MODE, type = 'gerneral', suffix = '' } = options;
const { prefix = import.meta.env.MODE, type = 'general', suffix = '' } = options;
return `${prefix}-${type}-${key}-${suffix}`;
};

Expand Down