Skip to content

Commit

Permalink
fix: Remove "beta" from Chain selection menu options + reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarsen136 committed Nov 1, 2023
1 parent b879dad commit 5a13671
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions libs/static/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ export const CHAINS: Config<ChainProperties> = {
export const DEFAULT_PREFIX: Prefix = 'ksm'

export const chainPrefixes: Prefix[] = [
'bsx',
'ahp',
'ahk',
'rmrk',
'snek',
'ksm',
'ahk',
'dot',
'ahp',
'bsx',
// 'movr',
// 'glmr',
]
Expand Down
4 changes: 2 additions & 2 deletions libs/static/src/names.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ export const NAMES: Record<Prefix, string> = {
rmrk: 'Kusama',
ksm: 'RMRK2',
snek: 'Snek [Rococo]',
ahk: 'KusamaHub [Beta]',
ahk: 'KusamaHub',
dot: 'Polkadot',
ahp: 'PolkadotHub [Beta]',
ahp: 'PolkadotHub',
// glmr: 'Moonbeam [Beta]',
// movr: 'Moonriver [Beta]',
}
2 changes: 1 addition & 1 deletion tests/e2e/createcollection.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ test('Check if chain change works using the dropdown', async ({ page }) => {
await expect(page.getByTestId('mockAddress')).toHaveText('true')
await page.goto('/create/collection')
expect(page.getByTestId('collection-chain')).toBeVisible()
await page.getByTestId('collection-chain').selectOption('KusamaHub [Beta]')
await page.getByTestId('collection-chain').selectOption('KusamaHub')
//Check if balances and deposits shows
await expect(page.getByTestId('collection-deposit')).toBeVisible({
timeout: 30000,
Expand Down

0 comments on commit 5a13671

Please sign in to comment.