Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
proddy committed Aug 8, 2023
1 parent 2b54db2 commit b5b965e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions interface/src/project/DashboardDevices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import { useState, useContext, useEffect, useCallback, useLayoutEffect } from 'r

import { IconContext } from 'react-icons';
import { toast } from 'react-toastify';
import DashboarDevicesDialog from './DashboardDevicesDialog';
import DashboardDevicesDialog from './DashboardDevicesDialog';
import DeviceIcon from './DeviceIcon';

import * as EMSESP from './api';
Expand Down Expand Up @@ -581,7 +581,7 @@ const DashboardDevices: FC = () => {
{renderDeviceData()}
{renderDeviceDetails()}
{selectedDeviceValue && (
<DashboarDevicesDialog
<DashboardDevicesDialog
open={deviceValueDialogOpen}
onClose={deviceValueDialogClose}
onSave={deviceValueDialogSave}
Expand Down
4 changes: 2 additions & 2 deletions interface/src/project/DashboardDevicesDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type DashboardDevicesDialogProps = {
progress: boolean;
};

const DashboarDevicesDialog = ({
const DashboardDevicesDialog = ({
open,
onClose,
onSave,
Expand Down Expand Up @@ -224,4 +224,4 @@ const DashboarDevicesDialog = ({
);
};

export default DashboarDevicesDialog;
export default DashboardDevicesDialog;

0 comments on commit b5b965e

Please sign in to comment.