mirror of
https://github.com/NoCrypt/migu.git
synced 2026-04-18 15:12:04 +00:00
chore: unused imports
This commit is contained in:
parent
47c8eb0064
commit
a6616dcafd
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue