Skip to content

Commit

Permalink
fix(Dashboard): fix breaking build due to invalid import
Browse files Browse the repository at this point in the history
  • Loading branch information
diehbria committed Sep 30, 2023
1 parent 631eabd commit 6690640
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/dashboard/src/components/actions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ import React, { memo, useState } from 'react';
import { useDispatch } from 'react-redux';

import { useViewport } from '@iot-app-kit/react-components';
import { DEFAULT_VIEWPORT } from '@iot-app-kit/react-components/src/components/time-sync';
import { Button, SpaceBetween, Box } from '@cloudscape-design/components';
import { onToggleReadOnly } from '~/store/actions';
import type { DashboardState } from '~/store/state';
import { isEqual, pick } from 'lodash';
import { DashboardSave } from '~/types';
import DashboardSettings from './settings';

const DEFAULT_VIEWPORT = { duration: '10m' };

export type ActionsProps = {
grid: DashboardState['grid'];
readOnly: boolean;
Expand Down

0 comments on commit 6690640

Please sign in to comment.