Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit bd2daa5

Browse files
committed
lint
1 parent 21c044d commit bd2daa5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

assets/javascripts/discourse/components/ai-artifact.gjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ export default class AiArtifactComponent extends Component {
3737
}
3838

3939
get artifactUrl() {
40-
let url = getURL(
41-
`/discourse-ai/ai-bot/artifacts/${this.args.artifactId}`
42-
);
40+
let url = getURL(`/discourse-ai/ai-bot/artifacts/${this.args.artifactId}`);
4341

4442
if (this.args.artifactVersion) {
4543
url = `${url}/${this.args.artifactVersion}`;

lib/ai_bot/tools/update_artifact.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def self.signature
5151
{
5252
name: "update_artifact",
5353
description:
54-
"Updates an existing web artifact with new HTML, CSS, or JavaScript content. Note either html, css, or js MUST be provided. You may provide all three if desired.",
54+
"Updates an existing web artifact with new HTML, CSS, or JavaScript content. Note either html, css, or js MUST be provided. You may provide all three if desired.",
5555
parameters: [
5656
{
5757
name: "artifact_id",

0 commit comments

Comments
 (0)