Skip to content

Commit

Permalink
chore: Run check
Browse files Browse the repository at this point in the history
  • Loading branch information
daavidrgz committed Oct 8, 2024
1 parent 5ef6857 commit ee2d466
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/web/frontend/src/components/editor/editor-utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { isMac } from "@/lib/utils";
import type { Data } from "@/model/data";
import FileType from "@/model/file-type";
import {
Expand All @@ -22,7 +23,6 @@ import { toast } from "sonner";
import type PromiseWorker from "webworker-promise";
import { validateFile } from "../import-popup/import-utils";
import urlPlugin from "./url-plugin";
import { isMac } from "@/lib/utils";

export const exportFile = (data: Data, filename: string) => {
const blob = new Blob([data.content], { type: `application/${data.type}` });
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { isMac } from "@/lib/utils";
import { Keyboard, X } from "lucide-react";
import { useState } from "react";
import ActionButton from "../action-button/action-button";
Expand All @@ -12,7 +13,6 @@ import {
import Link from "../ui/link";
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "../ui/table";
import { shortcutSections } from "./shortcuts";
import { isMac } from "@/lib/utils";

const ShortcutPopup = () => {
const [open, setOpen] = useState(false);
Expand Down

0 comments on commit ee2d466

Please sign in to comment.