Skip to content

Commit

Permalink
fix: deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
diegosteiner committed Apr 19, 2024
1 parent 66dc0f4 commit c7aefab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: yarn install
- run: yarn run build
- run: pnpm install
- run: pnpm run build
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
publish_dir: ./dist
2 changes: 1 addition & 1 deletion src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function Index() {
<div className="mb-3">
<label className="block text-gray-700 text-sm font-bold mb-2">Fusszeile</label>
<textarea
rows="4"
rows={4}
className="shadow appearance-none border border-primary rounded w-full py-2 px-3 text-gray-700 mb-3 leading-tight focus:outline-none"
value={footer}
onChange={(event) => setFooter(event.target.value)}
Expand Down
2 changes: 1 addition & 1 deletion src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ E-Mail: [email protected]`,

export const useStore = create<AppState>(
persist(
(set, get) => ({
(set, _get) => ({
...defaultState,
importData: (value: ImportTupel[]) => set((state) => ({ ...state, ...transform(value) })),
setYear: (value: number) => set((state) => ({ ...state, year: value })),
Expand Down

0 comments on commit c7aefab

Please sign in to comment.