Remove Act, AutoUpdater, and Book IPC modules alongside associated database logic.

This commit is contained in:
natreex
2026-04-05 19:18:42 -04:00
parent d4765e6576
commit 687c1d582c
99 changed files with 500 additions and 28269 deletions

View File

@@ -1,3 +1,4 @@
import {fetch} from "@tauri-apps/plugin-http";
import React, {ChangeEvent, useContext, useState} from 'react';
import {BookOpen, FileInput, Hash, Palette, Wand2} from 'lucide-react';
import {SessionContext, SessionContextProps} from "@/context/SessionContext";
@@ -76,7 +77,7 @@ export default function GhostWriter() {
content = editor?.getText();
} catch (e: unknown) {
if (e instanceof Error) {
errorMessage(t('ghostWriter.errorRetrieveContent'));
errorMessage(e.message);
} else {
errorMessage(t('ghostWriter.errorUnknownRetrieveContent'));
}