diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 887c112..bedac96 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,7 +61,7 @@ jobs: steps: - name: Check out Git repository uses: actions/checkout@v4 - - name: Use bun 1.1.0 + - name: Use bun latest uses: oven-sh/setup-bun@v1 with: bun-version: latest diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 98982aa..2f798f1 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Use bun 1.0.10 + - name: Use bun latest uses: oven-sh/setup-bun@v1 with: bun-version: latest @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Use bun 1.0.10 + - name: Use bun latest uses: oven-sh/setup-bun@v1 with: bun-version: latest diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index df4e12a..eaca8b0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Use bun 1.0.10 + - name: Use bun latest uses: oven-sh/setup-bun@v1 with: bun-version: latest diff --git a/README.md b/README.md index 87bd450..b97ea08 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ services: # if you plan on proxying it externally then this is unnecessary - theme=skeleton # defaults to skeleton - # is for the SSR to stop off first loads + # is for the SSR to stop off first loads # any of the themes avalabe in VUI # skeleton, wintry, crimson, gold-nouveau, hamlindigo, modern, rocket, sahara, seafoam, vintage restart: unless-stopped diff --git a/docker-compose-example.yml b/docker-compose-example.yml index cb72c37..5170f28 100644 --- a/docker-compose-example.yml +++ b/docker-compose-example.yml @@ -9,7 +9,7 @@ services: # will proxy the suwayomi server to the UI # if you plan on proxying it externally then this is unnecessary - theme=skeleton - # is for the SSR to stop off first loads + # is for the SSR to stop off first loads # defaults to skeleton # any of the themes avalabe in VUI # skeleton, wintry, crimson, gold-nouveau, hamlindigo, modern, rocket, sahara, seafoam, vintage diff --git a/src/routes/(app)/history/+page.svelte b/src/routes/(app)/history/+page.svelte index fcd2e62..3ca830e 100644 --- a/src/routes/(app)/history/+page.svelte +++ b/src/routes/(app)/history/+page.svelte @@ -12,7 +12,7 @@ import { History } from '$lib/gql/Queries'; import { writable } from 'svelte/store'; import type { ResultOf } from '$lib/gql/graphql'; - import { formatDate, gridValues, HelpDoSelect } from '$lib/util'; + import { formatDate, gridValues } from '$lib/util'; import MangaCard from '$lib/components/MangaCard.svelte'; import IntersectionObserver from '$lib/components/IntersectionObserver.svelte'; import IconWrapper from '$lib/components/IconWrapper.svelte';