Skip to content

Commit 4d379cb

Browse files
committed
fix quotes on redirect
1 parent 22cc8e5 commit 4d379cb

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

create-redirects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const template =
2323
2424
<Wrapper>
2525
<h1>Redirecting...</h1>
26-
<p>If you are not redirected automatically, please click <a href={to}>here</a>.</p>
26+
<p>If you are not redirected automatically, please click <a href="{to}">here</a>.</p>
2727
</Wrapper>
2828
2929
<style>

src/routes/aboutUs.html/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<Wrapper>
1515
<h1>Redirecting...</h1>
16-
<p>If you are not redirected automatically, please click <a href=/about-us>here</a>.</p>
16+
<p>If you are not redirected automatically, please click <a href="/about-us">here</a>.</p>
1717
</Wrapper>
1818

1919
<style>

src/routes/donate.html/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<Wrapper>
1515
<h1>Redirecting...</h1>
16-
<p>If you are not redirected automatically, please click <a href=/donate>here</a>.</p>
16+
<p>If you are not redirected automatically, please click <a href="/donate">here</a>.</p>
1717
</Wrapper>
1818

1919
<style>

src/routes/ourSites.html/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<Wrapper>
1515
<h1>Redirecting...</h1>
16-
<p>If you are not redirected automatically, please click <a href=/our-sites>here</a>.</p>
16+
<p>If you are not redirected automatically, please click <a href="/our-sites">here</a>.</p>
1717
</Wrapper>
1818

1919
<style>

0 commit comments

Comments
 (0)