Skip to content

Commit eaf5097

Browse files
authored
Merge branch 'main' into feat/atproto-blog-fe
2 parents 3433046 + 7a4563b commit eaf5097

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

app/components/ScrollToTop.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const shouldShowButton = computed(() => isActive.value && isTouchDeviceClient.va
5050
type="button"
5151
class="fixed bottom-4 inset-ie-4 z-50 w-12 h-12 bg-bg-elevated border border-border rounded-full shadow-lg flex items-center justify-center text-fg-muted hover:text-fg transition-colors active:scale-95"
5252
:aria-label="$t('common.scroll_to_top')"
53-
@click="() => scrollToTop()"
53+
@click="scrollToTop"
5454
>
5555
<span class="i-lucide:arrow-up w-5 h-5" aria-hidden="true" />
5656
</button>

app/pages/package/[[org]]/[name].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ const showSkeleton = shallowRef(false)
892892
variant="secondary"
893893
:title="$t('common.scroll_to_top')"
894894
:aria-label="$t('common.scroll_to_top')"
895-
@click="() => scrollToTop()"
895+
@click="scrollToTop"
896896
classicon="i-lucide:arrow-up"
897897
/>
898898
</ButtonGroup>

vercel.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,21 @@
77
"has": [
88
{
99
"type": "host",
10-
"value": "chat.npmx.dev"
10+
"value": "build.npmx.dev"
1111
}
1212
],
1313
"destination": "https://discord.gg/x9KE5U2q8w"
1414
},
15+
{
16+
"source": "/(.*)",
17+
"has": [
18+
{
19+
"type": "host",
20+
"value": "chat.npmx.dev"
21+
}
22+
],
23+
"destination": "https://discord.gg/CjZM5qRbCu"
24+
},
1525
{
1626
"source": "/(.*)",
1727
"has": [

0 commit comments

Comments
 (0)