Skip to content

Commit

Permalink
Remove misleading extensions (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
vicb authored Sep 11, 2024
1 parent d449e8f commit 49247e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/windy-sounding/src/containers/containers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { intlFormatDistance } from 'date-fns/intlFormatDistance';
import { useCallback, useState } from 'preact/hooks';
import { shallowEqual, useDispatch, useSelector } from 'react-redux';

import { Favorites } from '../components/favorites.js';
import { LoadingIndicator } from '../components/loading.js';
import { Message } from '../components/message.jsx';
import { SkewT, type SkewTProps } from '../components/skewt.js';
import { WindProfile } from '../components/wind-profile.jsx';
import { Favorites } from '../components/favorites';
import { LoadingIndicator } from '../components/loading';
import { Message } from '../components/message';
import { SkewT, type SkewTProps } from '../components/skewt';
import { WindProfile } from '../components/wind-profile';
import { pluginConfig } from '../config';
import flyxcIcon from '../img/jumoplane.svg';
import * as forecastSlice from '../redux/forecast-slice';
Expand All @@ -16,7 +16,7 @@ import { centerMap, changeLocation, updateTime } from '../redux/meta';
import * as pluginSlice from '../redux/plugin-slice';
import { type AppDispatch, type RootState } from '../redux/store';
import * as unitsSlice from '../redux/units-slice';
import { formatTimestamp } from '../util/utils.js';
import { formatTimestamp } from '../util/utils';

// Plugin

Expand Down

0 comments on commit 49247e5

Please sign in to comment.