Skip to content

Commit

Permalink
chore: fix biome issues
Browse files Browse the repository at this point in the history
  • Loading branch information
koen1711 committed Sep 18, 2024
1 parent 6125498 commit b4ec3a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/core/popups/popups/DriverInstall.svelte
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<script lang="ts">
import install_drivers from "$assets/install_drivers.mp4";
import Button from "$components/ui/Button.svelte";
import { type PopupState, popups } from "$state/popup.svelte";
import { getContext } from "svelte";
import { _ } from "svelte-i18n";
import type { Writable } from "svelte/store";
import install_drivers from "$assets/install_drivers.mp4"
const popupState = getContext<Writable<PopupState>>("state");
function close() {
Expand All @@ -15,7 +15,7 @@ function close() {
<div class="content">
<h1>{$_("DRIVER_INSTALL_TITLE")}</h1>
<p>{$_("DRIVER_INSTALL_TEXT")}</p>
<video src={install_drivers} controls={true} width={600} />
<video src={install_drivers} controls={true} width={600}></video>
<Button name={$_("CLOSE")} mode={"accent"} onclick={close} bold={true} />
</div>

Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/core/popups/popups/Uploader.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script lang="ts">
import { _ } from "svelte-i18n";
import DriverInstall from "$components/core/popups/popups/DriverInstall.svelte";
import Button from "$components/ui/Button.svelte";
import ProgressBar from "$components/ui/ProgressBar.svelte";
import { type PopupState, popups } from "$state/popup.svelte";
Expand All @@ -12,10 +13,9 @@ import {
port,
robot,
} from "$state/workspace.svelte";
import JSZip from "jszip";
import { getContext, onMount } from "svelte";
import type { Writable } from "svelte/store";
import JSZip from "jszip";
import DriverInstall from "$components/core/popups/popups/DriverInstall.svelte";
interface Props {
source?: string;
Expand Down

0 comments on commit b4ec3a6

Please sign in to comment.