aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/routes/+page.svelte3
-rw-r--r--src/stores/settings.ts3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 9b39407c..f7312138 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -125,12 +125,9 @@
<div style="width: 82.5vw; height: 92.5vh; float: none; clear: both; margin: auto auto;">
<embed
src="https://www.youtube.com/embed/rkmYIGFWNz8?autohide=1&autoplay=1"
- wmode="transparent"
type="video/mp4"
width="100%"
height="100%"
- allow="autoplay; encrypted-media; picture-in-picture"
- allowfullscreen
/>
</div>
{/if}
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index 351ff21c..ca081058 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -25,7 +25,8 @@ export interface Settings {
disableManga: boolean;
disableAnime: boolean;
disableUpcomingAnime: boolean;
- [key: string]: unknown;
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ [key: string]: any;
}
const defaultSettings: Settings = {