Fix syntax with NP entity import.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-02-17 13:40:58 -06:00
parent 169ffcff11
commit d7d34394d9
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
2 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@
import axios from 'axios';
import NchanSubscriber from 'nchan';
import AudioPlayer from './components/AudioPlayer';
import * as NowPlaying from './entity/NowPlaying';
import NowPlaying from './entity/NowPlaying';
export const radioPlayerProps = {
props: {

View File

@ -48,7 +48,7 @@ import ProfileFrontend, { profileFrontendProps } from './station_profile/Profile
import ProfileBackendNone from './station_profile/ProfileBackendNone';
import ProfileBackend, { profileBackendProps } from './station_profile/ProfileBackend';
import { BACKEND_NONE, FRONTEND_REMOTE } from './inc/radio_adapters';
import * as NowPlaying from './entity/NowPlaying';
import NowPlaying from './entity/NowPlaying';
import axios from 'axios';
export default {