Skip to content

Commit

Permalink
ユースケースビルダーがオフの際に Drawer 上部に白い線が入る件の修正 (#744)
Browse files Browse the repository at this point in the history
Co-authored-by: Yusuke Wada <[email protected]>
Co-authored-by: Taichiro Suzuki <[email protected]>
  • Loading branch information
3 people authored Nov 29, 2024
1 parent 70522a4 commit b8632d1
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions packages/web/src/components/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,18 @@ const Drawer: React.FC<Props> = (props) => {
<>
<DrawerBase>
{useCaseBuilderEnabled && (
<Switch
className="mx-3 mb-1 mt-3"
label="ビルダーモード"
checked={false}
onSwitch={() => {
navigate(ROUTE_INDEX_USE_CASE_BUILDER);
}}
/>
<>
<Switch
className="mx-3 mb-1 mt-3"
label="ビルダーモード"
checked={false}
onSwitch={() => {
navigate(ROUTE_INDEX_USE_CASE_BUILDER);
}}
/>
<div className="border-b" />
</>
)}
<div className="border-b" />
<div className="text-aws-smile mx-3 my-1 text-xs">
ユースケース <span className="text-gray-400">(生成 AI)</span>
</div>
Expand Down

0 comments on commit b8632d1

Please sign in to comment.