Skip to content

Commit

Permalink
ai: ignore latex dir clear error
Browse files Browse the repository at this point in the history
  • Loading branch information
end-4 committed Feb 27, 2024
1 parent c7c692a commit edabf40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .config/ags/modules/sideleft/apis/ai_chatmessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const TextBlock = (content = '') => Label({

Utils.execAsync(['bash', '-c', `rm ${LATEX_DIR}/*`])
.then(() => Utils.execAsync(['bash', '-c', `mkdir -p ${LATEX_DIR}`]))
.catch(print);
.catch(() => {});
const Latex = (content = '') => {
const latexViewArea = Box({
// vscroll: 'never',
Expand Down

0 comments on commit edabf40

Please sign in to comment.