Skip to content

Commit

Permalink
Fix copy & paste errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnei committed May 28, 2024
1 parent 52cf16c commit e876eb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ const css = (kind: Kind, extraCss: Interpolation<Theme> = {}): Interpolation<The
color: config.colors.happy0, // happy1BwInverted
},
}),

...focusStyle(config, { offset: -1 }),
});

return {
Expand All @@ -99,6 +97,7 @@ const css = (kind: Kind, extraCss: Interpolation<Theme> = {}): Interpolation<The
"&:not([disabled])": {
cursor: "pointer",
...notDisabledStyle,
...focusStyle(config, { offset: -1 }),
},
...extraCss as Record<string, unknown>,
};
Expand Down
2 changes: 1 addition & 1 deletion src/confirmationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type ConfirmationModalProps = Omit<ModalProps, "closable" | "title"> & {
onSubmit?: () => void;
/** Strings that will be displayed in the UI */
text: {
/** Text on the button to close the modal */
/** Text on the button to cancel the modal */
cancel: string,
/** Text on the button to close the modal */
close: string,
Expand Down

0 comments on commit e876eb8

Please sign in to comment.