Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
plasticviking committed Oct 29, 2024
1 parent c0d8bf2 commit 48c26b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/UI/Overlay/TileCache/CacheFileSize.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { convertBytesToReadableString } from 'utils/tile-cache/helpers';
import { useEffect, useState } from 'react';
import { thresholds, useTileSizeThresholds } from 'UI/Overlay/TileCache/tileSizeHook';
import { thresholds, useTileSizeThresholds } from './tileSizeHook';

type PropTypes = {
downloadSizeInBytes: number;
Expand Down
2 changes: 1 addition & 1 deletion app/src/UI/Overlay/TileCache/TileCacheCreationPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Button, Slider } from '@mui/material';
import TileCache from 'state/actions/cache/TileCache';
import TooltipWithIcon from 'UI/TooltipWithIcon/TooltipWithIcon';
import CacheFileSize from './CacheFileSize';
import { useTileSizeThresholds } from 'UI/Overlay/TileCache/tileSizeHook';
import { useTileSizeThresholds } from './tileSizeHook';
import { APPROX_SIZE_PER_TILE, AVAILABLE_ZOOMS } from './constants';

const TileCacheCreationPanel = () => {
Expand Down

0 comments on commit 48c26b3

Please sign in to comment.