This commit is contained in:
lloan alas 2024-01-10 12:43:49 -08:00 коммит произвёл Se Yeon Kim
Родитель 364e5ce12d
Коммит ac999f7162
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3F96D66EFEF597CC
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -9,7 +9,7 @@ import {
AriaOverlayProps,
} from "react-aria";
import { useOverlayTriggerState } from "react-stately";
import { FormEventHandler, ReactElement, ReactNode, useRef } from "react";
import { ReactElement, ReactNode, useRef } from "react";
import styles from "./AliasDeletionButtonPermanent.module.scss";
import { Button } from "../../Button";
import { AliasData, getFullAddress } from "../../../hooks/api/aliases";
@ -59,6 +59,7 @@ export const AliasDeletionButtonPermanent = (props: Props) => {
<hr />
<div className={styles.confirm}>
<div className={styles.buttons}>
{/* cancel button */}
<button
{...cancelButton.buttonProps}
ref={cancelButtonRef}
@ -66,6 +67,7 @@ export const AliasDeletionButtonPermanent = (props: Props) => {
>
{l10n.getString("profile-label-cancel")}
</button>
{/* confirm deletion button */}
<Button
onClick={() => {
onConfirm();
@ -84,6 +86,7 @@ export const AliasDeletionButtonPermanent = (props: Props) => {
return (
<>
{/* delete mask button - opens confirmation modal */}
<button
onClick={() => {
modalState.open();