Skip to content

Commit f4ed976

Browse files
authored
fix(web): header width error (#1361)
1 parent b678f1e commit f4ed976

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/layouts/Header/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const Header = (props: { width: string }) => {
5959
}
6060

6161
return (
62-
<div>
62+
<>
6363
{!isMobileDevice() ? (
6464
<div
6565
className={clsx(
@@ -218,7 +218,7 @@ const Header = (props: { width: string }) => {
218218
</div>
219219
</div>
220220
)}
221-
</div>
221+
</>
222222
);
223223
};
224224

0 commit comments

Comments
 (0)