diff --git a/package.json b/package.json
index c3088a0..9016ad1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ui",
- "version": "6.3.9",
+ "version": "6.3.10",
"license": "BUSL-1.1",
"private": true,
"packageManager": "pnpm@9.14.4",
diff --git a/src/app.css b/src/app.css
index cbbcb94..115bc66 100644
--- a/src/app.css
+++ b/src/app.css
@@ -107,7 +107,8 @@ body {
font-family: 'Nunito Variable'
}
-img {
+img,
+a {
-webkit-user-drag: none;
}
diff --git a/src/lib/components/EpisodesList.svelte b/src/lib/components/EpisodesList.svelte
index e636e30..f85d922 100644
--- a/src/lib/components/EpisodesList.svelte
+++ b/src/lib/components/EpisodesList.svelte
@@ -10,13 +10,13 @@
import { ChevronLeft, Play, ChevronRight } from 'lucide-svelte'
import Pagination from './Pagination.svelte'
- import { searchStore } from './SearchModal.svelte'
import { Button } from './ui/button'
import { Load } from './ui/img'
import { Profile } from './ui/profile'
import type { EpisodesResponse } from '$lib/modules/anizip/types'
+ import { searchStore } from '$lib'
import { episodes as _episodes, dedupeAiring, episodeByAirDate, notes, type Media } from '$lib/modules/anilist'
import { authAggregator, list, progress } from '$lib/modules/auth'
import { click, dragScroll } from '$lib/modules/navigate'
diff --git a/src/lib/components/SearchModal.svelte b/src/lib/components/SearchModal.svelte
index 0915d4f..6fe90d2 100644
--- a/src/lib/components/SearchModal.svelte
+++ b/src/lib/components/SearchModal.svelte
@@ -1,6 +1,5 @@