Fix scaling

This commit is contained in:
Nayam Amarshe
2023-09-09 18:31:31 +05:30
parent 883171a99f
commit 2def61e194
2 changed files with 7 additions and 5 deletions

View File

@@ -399,6 +399,7 @@ const Home = () => {
const upscaylHandler = async () => {
logit("🔄 Resetting Upscaled Image Path");
setUpscaledImagePath("");
setUpscaledBatchFolderPath("");
if (imagePath !== "" || batchFolderPath !== "") {
setProgress("Hold on...");
@@ -620,8 +621,9 @@ const Home = () => {
{batchMode &&
upscaledBatchFolderPath.length === 0 &&
batchFolderPath.length > 0 && (
<p className="select-none font-bold text-neutral-50">
Selected folder: {batchFolderPath}
<p className="select-none text-neutral-50">
<span className="font-bold">Selected folder:</span>{" "}
{batchFolderPath}
</p>
)}