Skip to content

Commit d1c4573

Browse files
authored
fix(greenhouse): fix greenhouse error (#782)
1 parent e990a1d commit d1c4573

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/tall-pans-divide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@cloudoperators/juno-app-greenhouse": patch
3+
---
4+
5+
Fix greenhouse org admin change

apps/greenhouse/src/components/Extensions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { extensionResolvers, extensionVersions } from "../../extensoinsManifest"
1414

1515
const CorePlugin = ({ config, auth }: any) => {
1616
// load the app lazily from the core-apps folder
17-
let App = lazy(() => import(`./core-apps/${config.id}/App.jsx`))
17+
let App = lazy(() => import(`./core-apps/${config.id}/App.tsx`))
1818
return (
1919
<Suspense fallback={"Loading..."}>
2020
<App {...config["props"]} auth={auth} />

0 commit comments

Comments
 (0)