Skip to content

Commit 4cc4599

Browse files
committed
chore: run pnpm dedupe
See https://pnpm.io/cli/dedupe
1 parent 2b29c99 commit 4cc4599

File tree

4 files changed

+1400
-12040
lines changed

4 files changed

+1400
-12040
lines changed

apps/staking/src/components/Root/i18n-provider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ export const I18nProvider = (
1515
() =>
1616
isSSR
1717
? DEFAULT_LOCALE
18-
: window.navigator.languages.find((locale) => {
18+
: (window.navigator.languages.find((locale) => {
1919
const language = parse(locale).language;
2020
return (
2121
language !== undefined &&
2222
language !== null &&
2323
SUPPORTED_LANGUAGES.has(language)
2424
);
25-
}) ?? DEFAULT_LOCALE,
25+
}) ?? DEFAULT_LOCALE),
2626
[isSSR],
2727
);
2828

governance/xc_admin/packages/xc_admin_frontend/components/InstructionViews/WormholeInstructionView.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,7 @@ export const WormholeInstructionView = ({
136136
? parsedInstruction.args[key]
137137
: parsedInstruction.args[key] instanceof
138138
Uint8Array
139-
? parsedInstruction.args[key].toString(
140-
'hex'
141-
)
139+
? parsedInstruction.args[key].toString()
142140
: typeof parsedInstruction.args[key] ===
143141
'bigint'
144142
? parsedInstruction.args[key].toString()

governance/xc_admin/packages/xc_admin_frontend/components/tabs/Proposals/Proposal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ export const Proposal = ({
549549
{typeof instruction.args[key] === 'string'
550550
? instruction.args[key]
551551
: instruction.args[key] instanceof Uint8Array
552-
? instruction.args[key].toString('hex')
552+
? instruction.args[key].toString()
553553
: typeof instruction.args[key] === 'bigint'
554554
? instruction.args[key].toString()
555555
: JSON.stringify(instruction.args[key])}

0 commit comments

Comments
 (0)