Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const QuantityInput = ({ balance, decimals, className }: Props) => {
control={control}
className={clsx(styles.input, className)}
rules={rules}
aria-label="Amount"
/>
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const OperationItemComponent = (props: ComponentProps) => {
<div className={styles.divider} />
{label ? (
<WidgetTooltip label={label}>
<button className={styles.type}>
<button className={styles.type} aria-label={label}>
<IconArrowDown size={12} />
</button>
</WidgetTooltip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ const SlippageControl = ({ afterConfirm }: { afterConfirm: () => void }) => {
onFocus={handleInputFocus}
placeholder=""
className={clsx(styles.preset, styles.active)}
aria-label="Slippage percent"
/>
<span className={styles.percent}>%</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/interwovenkit-react/src/public/app/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const Drawer = ({ children }: PropsWithChildren) => {
</Dialog.Backdrop>
)}

<Dialog.Popup className={styles.content}>
<Dialog.Popup className={styles.content} aria-label="Initia wallet">
<div className={clsx(styles.inner, "body")} ref={containerRef}>
{isSmall && <ScrollLock />}
<TxWatcher />
Expand Down
2 changes: 1 addition & 1 deletion packages/interwovenkit-react/src/public/app/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Modal = ({ children }: PropsWithChildren) => {
<Dialog.Root open={isModalOpen} onOpenChange={(isOpen) => !isOpen && closeModal()}>
<Dialog.Portal container={portalContainer}>
<Dialog.Backdrop className={styles.backdrop} onClick={closeModal} />
<Dialog.Popup className={styles.modal} ref={containerRef}>
<Dialog.Popup className={styles.modal} ref={containerRef} aria-label="Initia wallet">
<button className={styles.closeButton} onClick={closeModal} aria-label="Close">
<IconClose size={20} />
</button>
Expand Down
Loading