Commit 35b866ed authored by Chunchi Che's avatar Chunchi Che

rerange BuildDeck

parent cc907df2
Pipeline #27603 failed with stages
in 6 minutes and 25 seconds
...@@ -14,7 +14,7 @@ import { ...@@ -14,7 +14,7 @@ import {
} from "@/common"; } from "@/common";
import { CardEffectText, IconFont, ScrollableArea, YgoCard } from "@/ui/Shared"; import { CardEffectText, IconFont, ScrollableArea, YgoCard } from "@/ui/Shared";
import styles from "./CardDetail.module.scss"; import styles from "./index.module.scss";
export const CardDetail: React.FC<{ export const CardDetail: React.FC<{
code: number; code: number;
......
...@@ -11,8 +11,8 @@ import YGOProDeck from "ygopro-deck-encode"; ...@@ -11,8 +11,8 @@ import YGOProDeck from "ygopro-deck-encode";
import { deckStore, IDeck } from "@/stores"; import { deckStore, IDeck } from "@/stores";
import { Uploader } from "../Shared"; import { Uploader } from "../../Shared";
import styles from "./DeckSelect.module.scss"; import styles from "./index.module.scss";
export const DeckSelect: React.FC<{ export const DeckSelect: React.FC<{
decks: readonly { deckName: string }[]; decks: readonly { deckName: string }[];
......
...@@ -16,7 +16,7 @@ import { ...@@ -16,7 +16,7 @@ import {
} from "@/common"; } from "@/common";
import { FtsConditions } from "@/middleware/sqlite/fts"; import { FtsConditions } from "@/middleware/sqlite/fts";
import styles from "./Filter.module.scss"; import styles from "./index.module.scss";
const levels = Array.from({ length: 12 }, (_, index) => ({ const levels = Array.from({ length: 12 }, (_, index) => ({
value: index + 1, value: index + 1,
......
...@@ -16,7 +16,6 @@ import { ...@@ -16,7 +16,6 @@ import {
getJoinRoomPasswd, getJoinRoomPasswd,
getPrivateRoomID, getPrivateRoomID,
match, match,
pullDecks,
} from "@/api"; } from "@/api";
import { useConfig } from "@/config"; import { useConfig } from "@/config";
import { AudioActionType, changeScene } from "@/infra/audio"; import { AudioActionType, changeScene } from "@/infra/audio";
...@@ -320,10 +319,6 @@ export const Component: React.FC = () => { ...@@ -320,10 +319,6 @@ export const Component: React.FC = () => {
title={i18n("WIPTitle")} title={i18n("WIPTitle")}
desc={i18n("WIPDesc")} desc={i18n("WIPDesc")}
icon={null} icon={null}
onClick={async () => {
const mdproDecks = await pullDecks();
console.log(mdproDecks);
}}
/> />
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment