fix: remove renamed component
This commit is contained in:
parent
02bae8f0e3
commit
e751a4e5d3
2 changed files with 4 additions and 4 deletions
|
@ -2,13 +2,13 @@
|
|||
import App from '../layouts/App.astro'
|
||||
import Library from '../components/Library.astro'
|
||||
import Footer from '../components/Footer.astro'
|
||||
import SimpleAddressBar from '../components/SimpleAddressBar.astro'
|
||||
import AddressBar from '../components/AddressBar.astro'
|
||||
|
||||
export const prerender = false
|
||||
---
|
||||
|
||||
<App article={null}>
|
||||
<SimpleAddressBar url="" />
|
||||
<AddressBar url="" />
|
||||
<div slot="post" id="router-outlet">
|
||||
<h1>404: Not Found</h1>
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* NOTE: this page is a fix for old cached articles w/ cozified links going to an `a` route
|
||||
*/
|
||||
import SimpleAddressBar from '../components/SimpleAddressBar.astro'
|
||||
import AddressBar from '../components/AddressBar.astro'
|
||||
import App from '../layouts/App.astro'
|
||||
import Library from '../components/Library.astro'
|
||||
import Footer from '../components/Footer.astro'
|
||||
|
@ -13,7 +13,7 @@ return Astro.redirect(`/?url=${url}`)
|
|||
---
|
||||
|
||||
<App article={null}>
|
||||
<SimpleAddressBar url={url} />
|
||||
<AddressBar url={url} />
|
||||
|
||||
<div>
|
||||
Go to the correct <a href={`/?url=${url}`}>Page</a>
|
||||
|
|
Loading…
Reference in a new issue