feat: add toast for no content

This commit is contained in:
liuyuanchuang
2026-02-05 18:22:30 +08:00
parent d562d67203
commit 2b1da79bbc
18 changed files with 832 additions and 390 deletions

View File

@@ -61,7 +61,7 @@ export type Database = {
markdown_content: string | null;
latex_content: string | null;
mathml_content: string | null;
mathml_word_content: string | null;
mml: string | null;
rendered_image_path: string | null;
created_at: string;
};
@@ -71,7 +71,7 @@ export type Database = {
markdown_content?: string | null;
latex_content?: string | null;
mathml_content?: string | null;
mathml_word_content?: string | null;
mml?: string | null;
rendered_image_path?: string | null;
created_at?: string;
};
@@ -81,7 +81,7 @@ export type Database = {
markdown_content?: string | null;
latex_content?: string | null;
mathml_content?: string | null;
mathml_word_content?: string | null;
mml?: string | null;
rendered_image_path?: string | null;
created_at?: string;
};