Skip to content

Commit

Permalink
refactor: remove unnecessary console.log in ContextAppSideSheet compo…
Browse files Browse the repository at this point in the history
…nent
  • Loading branch information
Noggling committed Nov 12, 2024
1 parent fa2729d commit b827ab5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,8 @@ export function ContextAppSideSheet({
const { data: activeApp, isLoading } = useGetPortalApp(activePortalId, app.appManifest.appKey);

const contexts: OnboardedContext[] = useMemo(() => {
console.log(activeApp)
if (!activeApp || !activeContexts) return [];

if (!activeApp || !activeContexts) return [];
return activeContexts.map((context) => ({
...context,
isActive: activeApp.contextIds?.includes(context.contextId),
Expand Down

0 comments on commit b827ab5

Please sign in to comment.