diff --git a/CommonUI/src/Components/Graphs/DayUptimeGraph.tsx b/CommonUI/src/Components/Graphs/DayUptimeGraph.tsx index a8d8a67a36..0cb285b9ed 100644 --- a/CommonUI/src/Components/Graphs/DayUptimeGraph.tsx +++ b/CommonUI/src/Components/Graphs/DayUptimeGraph.tsx @@ -8,7 +8,7 @@ import React, { useEffect, useState, } from 'react'; -import Tooltip from '../Tooltip/Toolip'; +import Tooltip from '../Tooltip/Tooltip'; export interface Event { startDate: Date; diff --git a/CommonUI/src/Components/Tooltip/Toolip.tsx b/CommonUI/src/Components/Tooltip/Tooltip.tsx similarity index 100% rename from CommonUI/src/Components/Tooltip/Toolip.tsx rename to CommonUI/src/Components/Tooltip/Tooltip.tsx diff --git a/CommonUI/src/Components/Workflow/Component.tsx b/CommonUI/src/Components/Workflow/Component.tsx index a49923d393..4cad3c46f1 100644 --- a/CommonUI/src/Components/Workflow/Component.tsx +++ b/CommonUI/src/Components/Workflow/Component.tsx @@ -8,7 +8,7 @@ import { NodeType, Port, } from 'Common/Types/Workflow/Component'; -import Tooltip from '../Tooltip/Toolip'; +import Tooltip from '../Tooltip/Tooltip'; import Pill from '../Pill/Pill'; import { Green } from 'Common/Types/BrandColors'; diff --git a/StatusPage/src/Components/Monitor/MonitorOverview.tsx b/StatusPage/src/Components/Monitor/MonitorOverview.tsx index f491761bfc..18e4b42273 100644 --- a/StatusPage/src/Components/Monitor/MonitorOverview.tsx +++ b/StatusPage/src/Components/Monitor/MonitorOverview.tsx @@ -4,7 +4,7 @@ import React, { FunctionComponent, ReactElement } from 'react'; import MonitorStatus from 'Model/Models/MonitorStatus'; import MonitorStatusTimelne from 'Model/Models/MonitorStatusTimeline'; import Icon from 'CommonUI/src/Components/Icon/Icon'; -import Tooltip from 'CommonUI/src/Components/Tooltip/Toolip'; +import Tooltip from 'CommonUI/src/Components/Tooltip/Tooltip'; import IconProp from 'Common/Types/Icon/IconProp'; import MarkdownViewer from 'CommonUI/src/Components/Markdown.tsx/MarkdownViewer';