We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7a08df commit 084a8bbCopy full SHA for 084a8bb
src/main.tsx
@@ -26,7 +26,7 @@ function main() {
26
model: modelName,
27
tag: tagName,
28
} = logseq.settings as unknown as ISettings;
29
- const tag = ` #${tagName}`;
+ const tag = tagName ? ` #${tagName}` : '';
30
31
const prompts = getPrompts();
32
const model = new OpenAI(
0 commit comments