Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SYBIOTE committed Jun 19, 2024
1 parent 0f04ec1 commit 2af01d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/editor/src/components/toolbar/Toolbar2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { useProjectPermissions } from '@etherealengine/client-core/src/user/useU
import { useUserHasAccessHook } from '@etherealengine/client-core/src/user/userHasAccess'
import { GLTFModifiedState } from '@etherealengine/engine/src/gltf/GLTFDocumentState'
import { getMutableState, getState, useHookstate, useMutableState } from '@etherealengine/hyperflux'
import ContextMenu from '@etherealengine/ui/src/components/editor/layout/ContextMenu'
import PopOverMenu from '@etherealengine/ui/src/components/editor/layout/PopOverMenu'
import Button from '@etherealengine/ui/src/primitives/tailwind/Button'
import { t } from 'i18next'
import React from 'react'
Expand Down Expand Up @@ -154,7 +154,7 @@ export default function Toolbar() {
{t('editor:toolbar.lbl-publish')}
</Button>
</div>
<ContextMenu
<PopOverMenu
anchorEl={anchorEl.value as HTMLElement}
anchorPosition={anchorPosition.value}
open={anchorOpen.value}
Expand All @@ -176,7 +176,7 @@ export default function Toolbar() {
</Button>
</div>
))}
</ContextMenu>
</PopOverMenu>
</>
)
}

0 comments on commit 2af01d9

Please sign in to comment.