Skip to content

Commit 975a2e6

Browse files
committed
annoyed
1 parent 6804353 commit 975a2e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

site/src/api/api.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2200,9 +2200,9 @@ class ApiMethods {
22002200
default_value: p.default_value?.valid ? p.default_value.value : "",
22012201
options: p.options
22022202
? p.options.map((opt) => ({
2203-
...opt,
2204-
value: opt.value?.valid ? opt.value.value : "",
2205-
}))
2203+
...opt,
2204+
value: opt.value?.valid ? opt.value.value : "",
2205+
}))
22062206
: [],
22072207
}));
22082208
};
@@ -2628,7 +2628,7 @@ class ApiMethods {
26282628
// All methods must be defined with arrow function syntax. See the docstring
26292629
// above the ApiMethods class for a full explanation.
26302630
class ExperimentalApiMethods {
2631-
constructor(protected readonly axios: AxiosInstance) { }
2631+
constructor(protected readonly axios: AxiosInstance) {}
26322632

26332633
getAITasksPrompts = async (
26342634
buildIds: TypesGen.WorkspaceBuild["id"][],

0 commit comments

Comments
 (0)