Shun Miyazawa 3 лет назад
Родитель
Сommit
de493f1955
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      packages/app/src/components/Layout/SearchResultLayout.tsx

+ 3 - 1
packages/app/src/components/Layout/SearchResultLayout.tsx

@@ -13,10 +13,12 @@ type Props = {
 const SearchResultLayout = ({
   children, title, className,
 }: Props): JSX.Element => {
-  const classNames: string[] = ['wrapper'];
+
+  const classNames: string[] = [];
   if (className != null) {
     classNames.push(className);
   }
+
   return (
     <div className={`${commonStyles['on-search']}`}>
       <BasicLayout title={title} className={classNames.join(' ')}>