Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Yongjie Zhao committed Nov 19, 2023
1 parent c77e9ec commit 2c8a3de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { useTimeFilterShortcuts } from 'src/explore/components/controls/DateFilt
import { FrameComponentProps } from 'src/explore/components/controls/DateFilterControl/types';

export function ShortcutsFrame(props: FrameComponentProps) {
const shortCuts = useTimeFilterShortcuts();
const shortcuts = useTimeFilterShortcuts();

return (
<>
Expand All @@ -32,7 +32,7 @@ export function ShortcutsFrame(props: FrameComponentProps) {
value={props.value}
onChange={(e: any) => props.onChange(e.target.value)}
>
{shortCuts.map(([key, value]: [string, string]) => (
{shortcuts.map(([key, value]: [string, string]) => (
<Radio key={key} value={value} className="vertical-radio">
{key}
</Radio>
Expand Down

0 comments on commit 2c8a3de

Please sign in to comment.