Skip to content

Commit

Permalink
fix(greenhouse): fix greenhouse error (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
barsukov authored Feb 18, 2025
1 parent e990a1d commit d1c4573
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/tall-pans-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cloudoperators/juno-app-greenhouse": patch
---

Fix greenhouse org admin change
2 changes: 1 addition & 1 deletion apps/greenhouse/src/components/Extensions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { extensionResolvers, extensionVersions } from "../../extensoinsManifest"

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

0 comments on commit d1c4573

Please sign in to comment.