Skip to content

Commit

Permalink
Merge branch 'master' into task-fix-mnemonic
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanjoshi914 authored Feb 13, 2024
2 parents fb84ae5 + cb3aa85 commit 3a002ed
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions src/app/screens/ConfirmRequestPermission/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,24 +65,23 @@ const ConfirmRequestPermission: FC = () => {
</p>
)}
</div>

<div className="flex items-center mb-2">
<Checkbox
id="always_allow"
name="always_allow"
checked={alwaysAllow}
onChange={() => setAlwaysAllow((prev) => !prev)}
/>
<label
htmlFor="always_allow"
className="cursor-pointer pl-2 block text-sm text-gray-900 font-medium dark:text-white"
>
{t("always_allow")}
</label>
</div>
</div>
</div>
<div className="text-center flex flex-col">
<div className="flex items-center mb-4">
<Checkbox
id="always_allow"
name="always_allow"
checked={alwaysAllow}
onChange={() => setAlwaysAllow((prev) => !prev)}
/>
<label
htmlFor="always_allow"
className="cursor-pointer pl-2 block text-sm text-gray-900 font-medium dark:text-white"
>
{t("always_allow")}
</label>
</div>
<ConfirmOrCancel
label={tCommon("actions.confirm")}
onCancel={reject}
Expand Down

0 comments on commit 3a002ed

Please sign in to comment.