Skip to content

Commit 1edab0c

Browse files
authored
Merge pull request #59 from KNowledgeOnWebScale/EDC_active
added 404.html file after build step to handle gh-pages routing issues
2 parents 7765d07 + 007b7c8 commit 1edab0c

3 files changed

Lines changed: 3 additions & 43 deletions

File tree

404.html

Lines changed: 0 additions & 42 deletions
This file was deleted.

main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
run: |
2525
yarn i
2626
yarn run build
27+
cd dist
28+
cp index.html 404.html
2729
- name: Deploy 🚀
2830
uses: JamesIves/github-pages-deploy-action@releases/v4
2931
with:

src/stores/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const useAuthStore = defineStore("auth", {
55
state: () => ({
66
loggedIn: false,
77
webId: "" as string,
8-
selectedPodUrl: "" as string, // New state for selected Pod URL
8+
selectedPodUrl: "" as string,
99
}),
1010
actions: {
1111
initializeAuth() {

0 commit comments

Comments
 (0)