diff --git a/frontends/nextjs/src/components/ui/organisms/dialogs/Command/Results.tsx b/frontends/nextjs/src/components/ui/organisms/dialogs/Command/Results.tsx index 709ccd939..f185345dd 100644 --- a/frontends/nextjs/src/components/ui/organisms/dialogs/Command/Results.tsx +++ b/frontends/nextjs/src/components/ui/organisms/dialogs/Command/Results.tsx @@ -1,10 +1,12 @@ 'use client' -import { Box, Typography } from '@mui/material' +import { Box } from '@/fakemui/fakemui/layout' +import { Typography } from '@/fakemui/fakemui/data-display' import { ReactNode } from 'react' import { CommandDialog } from '../command' import type { CommandGroup, CommandItem } from '../command/command.types' +import styles from './Results.module.scss' interface CommandResultsProps { groups: CommandGroup[] @@ -35,12 +37,12 @@ const CommandResults = ({ onSelect?.(item) }} > - - + + {item.label} {item.description && ( - + {item.description} )}