Skip to content

Commit 2187241

Browse files
committed
Fix issue with About page on initial load
1 parent e73842a commit 2187241

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

www/src/routes/about/+page.svelte

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<script>
22
import { FOCUS_OUTLINE } from '$lib/classnames'
33
import Heading from '$lib/components/heading.svelte'
4-
import FadeUp from '$lib/components/helpers/fade-up.svelte'
54
import MentionLink from '$lib/components/mention-link.svelte'
65
import PageHero from '$lib/components/page-hero.svelte'
76
import PageSection from '$lib/components/page-section.svelte'
@@ -25,20 +24,24 @@ let { data } = $props()
2524
I’m<br />
2625
Jeff<br />
2726
Nelson
28-
{#snippet intro({ intersecting })}
29-
<FadeUp showing={intersecting} delay={100}>
30-
I’m a User Interface Developer. Previously, I’ve worked at
31-
<span class="whitespace-nowrap"
32-
><MentionLink site="clari">Clari</MentionLink>,</span
33-
>
34-
<span class="whitespace-nowrap"
35-
><MentionLink site="showbie">Showbie</MentionLink>,</span
36-
>
37-
and at
38-
<span class="whitespace-nowrap"
39-
><MentionLink site="lift">Lift Interactive</MentionLink>.</span
40-
>
41-
</FadeUp>
27+
{#snippet intro({ _intersecting })}
28+
<!--
29+
Disabling <FadeUp> here due to some error on initial page load
30+
about `appendChild` not being a method on Node type.
31+
-->
32+
<!-- <FadeUp showing={intersecting} delay={100}> -->
33+
I’m a User Interface Developer. Previously, I’ve worked at
34+
<span class="whitespace-nowrap"
35+
><MentionLink site="clari">Clari</MentionLink>,</span
36+
>
37+
<span class="whitespace-nowrap"
38+
><MentionLink site="showbie">Showbie</MentionLink>,</span
39+
>
40+
and at
41+
<span class="whitespace-nowrap"
42+
><MentionLink site="lift">Lift Interactive</MentionLink>.</span
43+
>
44+
<!-- </FadeUp> -->
4245
{/snippet}
4346
</PageHero>
4447
<!-- <PageSection>

0 commit comments

Comments
 (0)