mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-05-13 13:17:45 +00:00
fix: zero showing on submit form when no miis in queue
This commit is contained in:
parent
99beabd385
commit
f70a03abf2
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ export default function SubmitForm({ inQueueMiisCount }: Props) {
|
|||
</div>
|
||||
|
||||
<div className="max-w-2xl">
|
||||
{inQueueMiisCount && (
|
||||
{inQueueMiisCount !== 0 && (
|
||||
<div className="bg-zinc-50 border-2 border-zinc-400 rounded-2xl shadow-lg p-4 flex items-start gap-3 text-zinc-600 mb-4">
|
||||
<Icon icon="material-symbols:timer" className="text-2xl shrink-0" />
|
||||
<p className="font-medium">
|
||||
|
|
|
|||
Loading…
Reference in a new issue