refactor(web/menu): rename planet menu to radial menu

This commit is contained in:
Luke
2023-01-27 22:02:16 +01:00
parent a8abefa2d0
commit f5617abbb6
2 changed files with 8 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ import ListMenu from './features/menu/list';
import Dev from './features/dev';
import { isEnvBrowser } from './utils/misc';
import SkillCheck from './features/skillcheck';
import PlanetMenu from './features/menu/planet';
import RadialMenu from './features/menu/radial';
const App: React.FC = () => {
useNuiEvent('setClipboard', (data: string) => {
@@ -31,7 +31,7 @@ const App: React.FC = () => {
<AlertDialog />
<ContextMenu />
<ListMenu />
<PlanetMenu />
<RadialMenu />
<SkillCheck />
{isEnvBrowser() && <Dev />}
</>