Shun Miyazawa 3 년 전
부모
커밋
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(' ')}>