fix: Undo unwanted changes

Signed-off-by: Myzel394 <50424412+Myzel394@users.noreply.github.com>
This commit is contained in:
Myzel394 2024-04-02 18:56:29 +02:00
parent c226434204
commit 6b19cb81ed
No known key found for this signature in database
GPG Key ID: DEC4AAB876F73185

View File

@ -134,7 +134,7 @@ fun SaveFolderPage(
) {
SaveFolderSelection(
saveFolder = saveFolder,
isLowOnStorage = false,
isLowOnStorage = isLowOnStorage,
onSaveFolderChange = { saveFolder = it },
)
}
@ -197,7 +197,7 @@ fun SaveFolderPage(
}
}
},
enabled = if (saveFolder == null) !false else true,
enabled = if (saveFolder == null) !isLowOnStorage else true,
modifier = Modifier
.fillMaxWidth()
.height(BIG_PRIMARY_BUTTON_SIZE),