don't flash no exports icon while loading

This commit is contained in:
Josh Hawkins 2025-12-24 09:26:20 -06:00
parent 2361e4ed08
commit dd1297b66b

View File

@ -219,12 +219,12 @@ function Exports() {
/>
))}
</div>
) : (
) : exports !== undefined ? (
<div className="absolute left-1/2 top-1/2 flex -translate-x-1/2 -translate-y-1/2 flex-col items-center justify-center text-center">
<LuFolderX className="size-16" />
{t("noExports")}
</div>
)}
) : null}
</div>
</div>
);