all: fix formatting
diff --git a/webui/src/web-components/sketch-push-button.test.ts b/webui/src/web-components/sketch-push-button.test.ts
index eeb475e..9ee4d05 100644
--- a/webui/src/web-components/sketch-push-button.test.ts
+++ b/webui/src/web-components/sketch-push-button.test.ts
@@ -65,12 +65,14 @@
// Test with selected remote that doesn't exist
const invalidRemoteURL = await component.evaluate((el: SketchPushButton) => {
- (el as any)._remotes = [{
- name: "origin",
- url: "https://github.com/user/repo.git",
- display_name: "user/repo",
- is_github: true,
- }];
+ (el as any)._remotes = [
+ {
+ name: "origin",
+ url: "https://github.com/user/repo.git",
+ display_name: "user/repo",
+ is_github: true,
+ },
+ ];
(el as any)._selectedRemote = "nonexistent";
(el as any)._branch = "test-branch";
return (el as any)._computeBranchURL();