-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
86 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
services/console/src/components/console/onboard/OnboardSteps.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import { themeSignal } from "../../navbar/theme/util"; | ||
import OnboardStepsInner, { type Props } from "./OnboardStepsInner" | ||
import OnboardStepsInner, { type Props } from "./OnboardStepsInner"; | ||
|
||
const OnboardSteps = (props: Props) => { | ||
const theme = themeSignal; | ||
|
||
return <OnboardStepsInner {...props} theme={theme()} />; | ||
} | ||
}; | ||
|
||
export default OnboardSteps; | ||
export default OnboardSteps; |
6 changes: 3 additions & 3 deletions
6
services/console/src/components/console/onboard/OnboardStepsFallback.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import OnboardSteps, { type Props } from "./OnboardStepsInner" | ||
import OnboardSteps, { type Props } from "./OnboardStepsInner"; | ||
|
||
const OnboardStepsFallback = (props: Props) => { | ||
return <OnboardSteps {...props} />; | ||
} | ||
}; | ||
|
||
export default OnboardStepsFallback; | ||
export default OnboardStepsFallback; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,4 +58,4 @@ export const themeWordmark = (theme: Theme) => { | |
case Theme.Dark: | ||
return BENCHER_WORDMARK_DARK; | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters