Skip to content

Commit 813fb7a

Browse files
committed
fmt
1 parent 67f5de4 commit 813fb7a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

backend/src/external/simple-transform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default class SimpleTransformer implements TransformerPlugin {
2020
result = result.replace("{CURATOR}", submission.curatorUsername);
2121
result = result.replace("{CURATOR_NOTES}", submission.curatorNotes || "");
2222
result = result.replace("{SUBMISSION_ID}", submission.tweetId || "");
23-
submission.username
23+
submission.username;
2424

2525
return result;
2626
} catch (error: unknown) {

docs/sidebars.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const sidebars: SidebarsConfig = {
3838
{
3939
type: "doc",
4040
id: "plugins/index",
41-
label: "📖 Overview"
41+
label: "📖 Overview",
4242
},
4343
{
4444
type: "category",
@@ -47,9 +47,9 @@ const sidebars: SidebarsConfig = {
4747
{
4848
type: "doc",
4949
id: "plugins/distributors/telegram",
50-
label: "📱 Telegram"
51-
}
52-
]
50+
label: "📱 Telegram",
51+
},
52+
],
5353
},
5454
{
5555
type: "category",
@@ -58,14 +58,14 @@ const sidebars: SidebarsConfig = {
5858
{
5959
type: "doc",
6060
id: "plugins/transformers/gpt-transform",
61-
label: "🤖 GPT Transform"
61+
label: "🤖 GPT Transform",
6262
},
6363
{
6464
type: "doc",
6565
id: "plugins/transformers/simple-transform",
66-
label: "📝 Simple Transform"
67-
}
68-
]
66+
label: "📝 Simple Transform",
67+
},
68+
],
6969
},
7070
{
7171
type: "doc",

0 commit comments

Comments
 (0)