Skip to content

Commit

Permalink
undo import path changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecAivazis committed Nov 17, 2022
1 parent 1e764b4 commit 0e23b98
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion site/src/routes/api/query/+page.svx
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,10 @@ import { loadAll, load_MyQuery, load_MyOtherQuery } from '$houdini'

export async function load(event) {
return {
...(await loadAll(load_MyQuery({ event }), load_MyOtherQuery({ event })))
...(await loadAll(
load_MyQuery({ event }),
load_MyOtherQuery({ event })
))
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion site/src/routes/guides/typescript/+page.svx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Your `PageData` type will also come from `./$houdini` since SvelteKit's generate
<!-- src/routes/myProfile/+page.svelte -->

<script>
import { PageData } from '../$houdini'
import { PageData } from './$houdini'

export let data: PageData

Expand Down
4 changes: 2 additions & 2 deletions site/src/routes/intro/fragments/+page.svx
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ Before we add anything to our route, let's update the component defined in `src/
```svelte
<script>
import { graphql, fragment } from '$houdini'
import { Sprite, Display } from '..'
import Number from '../SpeciesPreviewNumber.svelte'
import { Sprite, Display } from '.'
import Number from './SpeciesPreviewNumber.svelte'

export let species
export let number
Expand Down
2 changes: 1 addition & 1 deletion site/src/routes/intro/mutations/+page.svx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: The third part of the Houdini intro focusing on how to update the c
---

<script>
import { GraphQLExplained } from '../../../components'
import { GraphQLExplained } from '../../components'
</script>

# Handling Updates
Expand Down

0 comments on commit 0e23b98

Please sign in to comment.