Skip to content

Commit 32e27c8

Browse files
committed
pr feedback
1 parent e0d276e commit 32e27c8

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

site/src/components/Footer/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Footer: Component = () => {
1111
</a>
1212
,{" "}
1313
<a class="text-link" href="https://tanstack.com/start/latest/docs/framework/solid/overview" target="_blank">
14-
TanStack Start
14+
TanStack Start for Solid
1515
</a>
1616
, and best of all ...{" "}
1717
<span class="whitespace-nowrap">

site/src/components/Search/ClientSearchModal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ const ClientSearchModal: Component<{
5959

6060
const scrollToLink = () => {
6161
const hash = location().hash;
62-
if (!hash) return;
63-
if (hash === prevHash) return;
62+
if (!hash || hash === prevHash) return;
6463
prevHash = hash;
6564

6665
scrollIntoView(`[href="#${hash}"]`, { behavior: "auto", offset: 70 });

0 commit comments

Comments
 (0)