Skip to content

Commit b28ded4

Browse files
committed
Restore #2168 fix
1 parent 19ba9a4 commit b28ded4

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/app/components/LayerPicker/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { FC, useState } from 'react'
22
import { useTranslation } from 'react-i18next'
3-
import { Drawer, DrawerContent } from '@oasisprotocol/ui-library/src/components/ui/drawer'
3+
import { Drawer, DrawerContent, DrawerTitle } from '@oasisprotocol/ui-library/src/components/ui/drawer'
44
import { Separator } from '@oasisprotocol/ui-library/src/components/ui/separator'
55
import { HomePageLink } from '../PageLayout/Logotype'
66
import { Network } from '../../../types/network'
@@ -62,7 +62,9 @@ const LayerPickerContent: FC<LayerPickerContentProps> = ({ isOutOfDate, onClose,
6262
return (
6363
<div className="flex flex-col w-full flex-1 lg:block lg:w-auto lg:flex-none">
6464
<div className="relative mb-0 lg:mb-2 lg:mb-10">
65-
<HomePageLink showText={!isMobile} />
65+
<DrawerTitle>
66+
<HomePageLink showText={!isMobile} />
67+
</DrawerTitle>
6668
</div>
6769
{isTablet && (
6870
<div className="flex justify-between items-center min-h-12">

0 commit comments

Comments
 (0)