From 9e59a472da9626bf142522d482d5ba4cb983db2f Mon Sep 17 00:00:00 2001 From: Athou Date: Tue, 27 Jun 2023 08:21:30 +0200 Subject: [PATCH] fix typo --- .../src/components/{ActionButtton.tsx => ActionButton.tsx} | 0 commafeed-client/src/components/content/FeedEntryFooter.tsx | 2 +- commafeed-client/src/components/header/Header.tsx | 2 +- commafeed-client/src/components/header/MarkAllAsReadButton.tsx | 2 +- commafeed-client/src/pages/WelcomePage.tsx | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename commafeed-client/src/components/{ActionButtton.tsx => ActionButton.tsx} (100%) diff --git a/commafeed-client/src/components/ActionButtton.tsx b/commafeed-client/src/components/ActionButton.tsx similarity index 100% rename from commafeed-client/src/components/ActionButtton.tsx rename to commafeed-client/src/components/ActionButton.tsx diff --git a/commafeed-client/src/components/content/FeedEntryFooter.tsx b/commafeed-client/src/components/content/FeedEntryFooter.tsx index 1ff895a2..30ef4e0b 100644 --- a/commafeed-client/src/components/content/FeedEntryFooter.tsx +++ b/commafeed-client/src/components/content/FeedEntryFooter.tsx @@ -4,7 +4,7 @@ import { Constants } from "app/constants" import { markEntriesUpToEntry, markEntry, starEntry, tagEntry } from "app/slices/entries" import { useAppDispatch, useAppSelector } from "app/store" import { Entry } from "app/types" -import { ActionButton } from "components/ActionButtton" +import { ActionButton } from "components/ActionButton" import { useMobile } from "hooks/useMobile" import { TbArrowBarToDown, TbExternalLink, TbEyeCheck, TbEyeOff, TbShare, TbStar, TbStarOff, TbTag } from "react-icons/tb" import { ShareButtons } from "./ShareButtons" diff --git a/commafeed-client/src/components/header/Header.tsx b/commafeed-client/src/components/header/Header.tsx index 61eddaf8..ac66019e 100644 --- a/commafeed-client/src/components/header/Header.tsx +++ b/commafeed-client/src/components/header/Header.tsx @@ -5,7 +5,7 @@ import { Constants } from "app/constants" import { reloadEntries, search, selectNextEntry, selectPreviousEntry } from "app/slices/entries" import { changeReadingMode, changeReadingOrder } from "app/slices/user" import { useAppDispatch, useAppSelector } from "app/store" -import { ActionButton } from "components/ActionButtton" +import { ActionButton } from "components/ActionButton" import { Loader } from "components/Loader" import { useBrowserExtension } from "hooks/useBrowserExtension" import { useMobile } from "hooks/useMobile" diff --git a/commafeed-client/src/components/header/MarkAllAsReadButton.tsx b/commafeed-client/src/components/header/MarkAllAsReadButton.tsx index cefaebe0..eb8578ff 100644 --- a/commafeed-client/src/components/header/MarkAllAsReadButton.tsx +++ b/commafeed-client/src/components/header/MarkAllAsReadButton.tsx @@ -3,7 +3,7 @@ import { Trans } from "@lingui/macro" import { Button, Code, Group, Modal, Slider, Stack, Text } from "@mantine/core" import { markAllEntries } from "app/slices/entries" import { useAppDispatch, useAppSelector } from "app/store" -import { ActionButton } from "components/ActionButtton" +import { ActionButton } from "components/ActionButton" import { useState } from "react" import { TbChecks } from "react-icons/tb" diff --git a/commafeed-client/src/pages/WelcomePage.tsx b/commafeed-client/src/pages/WelcomePage.tsx index 658022f4..62a0d53e 100644 --- a/commafeed-client/src/pages/WelcomePage.tsx +++ b/commafeed-client/src/pages/WelcomePage.tsx @@ -6,7 +6,7 @@ import { redirectToApiDocumentation, redirectToLogin, redirectToRegistration, re import { useAppDispatch, useAppSelector } from "app/store" import welcome_page_dark from "assets/welcome_page_dark.png" import welcome_page_light from "assets/welcome_page_light.png" -import { ActionButton } from "components/ActionButtton" +import { ActionButton } from "components/ActionButton" import { useBrowserExtension } from "hooks/useBrowserExtension" import { useMobile } from "hooks/useMobile" import { useAsyncCallback } from "react-async-hook"