style: lint

This commit is contained in:
ReaJason
2025-05-28 01:22:54 +08:00
parent 21acf71af6
commit cd10fe9a2c
3 changed files with 9 additions and 7 deletions
+4 -1
View File
@@ -3,7 +3,10 @@ import { GenerateResult } from "@/types/shell";
import { useTranslation } from "react-i18next";
import { Button } from "../ui/button";
export function JarResult({ packResult, generateResult }: Readonly<{ packResult: string; generateResult?: GenerateResult }>) {
export function JarResult({
packResult,
generateResult,
}: Readonly<{ packResult: string; generateResult?: GenerateResult }>) {
const { t } = useTranslation();
return (
<div className="flex items-center justify-center">
@@ -1,6 +1,5 @@
import { GenerateResult } from "@/types/shell";
import { TFunction } from "i18next";
import { Fragment } from "react/jsx-runtime";
import { CodeViewer } from "../code-viewer";
import { AgentResult } from "./agent";
import { JarResult } from "./jar-result";