chore: unused imports

This commit is contained in:
RockinChaos 2024-06-05 00:32:29 -07:00
parent 47c8eb0064
commit a6616dcafd

View file

@ -1,9 +1,6 @@
<script>
import { formatMap, setStatus, playMedia } from '@/modules/anime.js'
import { anilistClient } from '@/modules/anilist.js'
import { click } from '@/modules/click.js'
import Scoring from '@/views/ViewAnime/Scoring.svelte'
import AudioLabel from '@/views/ViewAnime/AudioLabel.svelte'
import { writable } from 'svelte/store'
/** @type {import('@/modules/al.d.ts').Media} */
@ -58,6 +55,9 @@
}
}
/**
* @param {{ target: { value: any; }; }} event
*/
function handleEpisodes(event) {
const enteredValue = event.target.value
if (/^\d+$/.test(enteredValue)) {
@ -122,7 +122,7 @@
</div>
<style>
.modal :global(.absolute-container) {
.modal:global(.absolute-container) {
left: -48% !important;
}