Skip to content

Commit 0b53408

Browse files
committed
chore: run npm run format
we had a handful of commits where husky was not enabled, and so formatting was not performed
1 parent e2394e9 commit 0b53408

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

plugins/plugin-client-default/src/index.tsx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,19 @@ export default function renderMain(props: KuiProps) {
5050
productName={productName}
5151
lightweightTables
5252
{...props}
53-
isPopup={false}
54-
noTopTabs
55-
guidebooks={false}
53+
isPopup={false}
54+
noTopTabs
55+
guidebooks={false}
5656
quietExecCommand={false}
5757
toplevel={!Capabilities.inBrowser() && <Search />}
5858
>
5959
<ContextWidgets>
60-
{/* <CurrentContext />
60+
{/* <CurrentContext />
6161
<CurrentNamespace /> */}
6262
</ContextWidgets>
6363

64-
<SpaceFiller/>
65-
<MeterWidgets>
66-
</MeterWidgets>
64+
<SpaceFiller />
65+
<MeterWidgets></MeterWidgets>
6766
</Kui>
6867
)
6968
}

tests/common/startElectron.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ function electronProductionPath() {
1717
return process.platform === "linux"
1818
? productName
1919
: process.platform === "win32"
20-
? `${productName}.exe`
21-
: join(productName + ".app", "Contents/MacOS", productName)
20+
? `${productName}.exe`
21+
: join(productName + ".app", "Contents/MacOS", productName)
2222
}
2323

2424
export default async function startElectron() {
@@ -27,8 +27,8 @@ export default async function startElectron() {
2727
const executablePath = !process.env.EXECUTABLE_PATH
2828
? undefined
2929
: process.env.EXECUTABLE_PATH !== "github-actions-production"
30-
? process.env.EXECUTABLE_PATH
31-
: join(
30+
? process.env.EXECUTABLE_PATH
31+
: join(
3232
process.env.GITHUB_WORKSPACE,
3333
"dist/electron",
3434
`${productName}-${githubActionsOS()}-${githubActionsArch()}`,

tests/plugin-codeflare/dashboard/dashboard.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export default function doDashboard(directory: string) {
1111

1212
await page.keyboard.type(`dashboard -f ${slash(relative(process.cwd(), join(__dirname, "./inputs", directory)))}`)
1313

14-
1514
await page.keyboard.press("Enter")
1615

1716
const splitSelector = ".kui--terminal-split-container"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import doDashboard from "../dashboard";
1+
import doDashboard from "../dashboard"
22

33
doDashboard("1")

0 commit comments

Comments
 (0)