Skip to content

Commit 4f69216

Browse files
committed
Fix config and category displaying
1 parent 00820aa commit 4f69216

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pages/rollups.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ watch(
450450
<td>
451451
<NuxtLink :to="`/rollup/${r.slug}`">
452452
<Flex align="center">
453-
<Text size="13" weight="600" color="primary"> {{ capitilize(r.category) }} </Text>
453+
<Text size="13" weight="600" color="primary"> {{ r.category === 'nft' ? r.category.toUpperCase() : capitilize(r.category) }} </Text>
454454
</Flex>
455455
</NuxtLink>
456456
</td>

services/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const useServerURL = () => {
3737
return Server.API.dev
3838

3939
default:
40-
return Server.API.mainnet
40+
return Server.API.dev
4141
}
4242
}
4343

@@ -61,7 +61,7 @@ export const useSocketURL = () => {
6161
return Server.WSS.dev
6262

6363
default:
64-
return Server.WSS.mainnet
64+
return Server.WSS.dev
6565
}
6666
}
6767

0 commit comments

Comments
 (0)