We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d276e commit 32e27c8Copy full SHA for 32e27c8
2 files changed
site/src/components/Footer/Footer.tsx
@@ -11,7 +11,7 @@ const Footer: Component = () => {
11
</a>
12
,{" "}
13
<a class="text-link" href="https://tanstack.com/start/latest/docs/framework/solid/overview" target="_blank">
14
- TanStack Start
+ TanStack Start for Solid
15
16
, and best of all ...{" "}
17
<span class="whitespace-nowrap">
site/src/components/Search/ClientSearchModal.tsx
@@ -59,8 +59,7 @@ const ClientSearchModal: Component<{
59
60
const scrollToLink = () => {
61
const hash = location().hash;
62
- if (!hash) return;
63
- if (hash === prevHash) return;
+ if (!hash || hash === prevHash) return;
64
prevHash = hash;
65
66
scrollIntoView(`[href="#${hash}"]`, { behavior: "auto", offset: 70 });
0 commit comments