Merge branch 'main' of https://github.com/ramvignesh-b/pi-ku into feature/ssl-integration

This commit is contained in:
ramvignesh-b
2026-04-16 04:30:55 +05:30
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -309,6 +309,7 @@ export default function Editor() {
onClose={() =>
setDecryptionStatus({ status: "RESET", message: "", log: "" })
}
isOpen={decryptionStatus.status !== "RESET"}
/>
{isInitialLoading && (
+2 -2
View File
@@ -183,8 +183,8 @@ export default function Reader() {
<LogModal
isOpen={!!warning}
onClose={() => setWarning(null)}
message={warning?.message}
log={warning?.log}
message={warning?.message || ""}
log={warning?.log || ""}
status="WARN"
/>