From 9ac7273c244c439c85d536c6eb18599f51289f40 Mon Sep 17 00:00:00 2001 From: Patricio Del Boca Date: Tue, 16 Apr 2024 12:25:26 -0300 Subject: [PATCH] Fix typo (#326) --- client/components/Parts/Bars/Action.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/Parts/Bars/Action.tsx b/client/components/Parts/Bars/Action.tsx index 2c5cc4a6..160cdab4 100644 --- a/client/components/Parts/Bars/Action.tsx +++ b/client/components/Parts/Bars/Action.tsx @@ -39,7 +39,7 @@ export interface ButtonProps { export function SaveAsButton(props: ButtonProps) { const onClick = props.onClick || noop let title = 'Save to another location [Ctrl+J]' - if (props.disabled) title = 'Saving to another locaion is not avialble' + if (props.disabled) title = 'Saving to another location is not available' useKeyPress(['ctrl.j'], (event) => { event.preventDefault() if (!props.disabled) { @@ -65,7 +65,7 @@ export function SaveAsButton(props: ButtonProps) { export function PublishButton(props: ButtonProps) { const onClick = props.onClick || noop let title = 'Publish on the web [Ctrl+K]' - if (props.disabled) title = 'Publishing on the web is not avialble' + if (props.disabled) title = 'Publishing on the web is not available' useKeyPress(['ctrl.k'], (event) => { event.preventDefault() if (!props.disabled) {