Skip to content

Commit

Permalink
chore: 💄
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlkoch committed Oct 18, 2024
1 parent 1fe286c commit b378564
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/bootstrap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import Application, {
} from '@terrestris/shogun-util/dist/model/Application';
import User from '@terrestris/shogun-util/dist/model/User';
import SHOGunApplicationUtil from '@terrestris/shogun-util/dist/parser/SHOGunApplicationUtil';
import SHOGunAPIClient from '@terrestris/shogun-util/dist/service/SHOGunAPIClient';
import { SHOGunAPIClient } from '@terrestris/shogun-util/dist/service/SHOGunAPIClient';

const App = React.lazy(() => import('./App'));

Expand Down
2 changes: 1 addition & 1 deletion src/components/ToolMenu/LayerTree/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import {
useMap
} from '@terrestris/react-util/dist/Hooks/useMap/useMap';

import LayerType from '@terrestris/shogun-util/dist/model/enum/LayerType';
import type { LayerType } from '@terrestris/shogun-util/dist/model/enum/LayerType';
import {
getBearerTokenHeader
} from '@terrestris/shogun-util/dist/security/getBearerTokenHeader';
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const UserMenu: React.FC = (): JSX.Element => {

useEffect(() => {
const getLoginUrl = async () => {
const url = await keycloak?.createLoginUrl()
const url = await keycloak?.createLoginUrl();
setLoginUrl(url);
};

Expand Down
2 changes: 1 addition & 1 deletion src/context/SHOGunAPIClientContext.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

import SHOGunAPIClient from '@terrestris/shogun-util/dist/service/SHOGunAPIClient';
import { SHOGunAPIClient } from '@terrestris/shogun-util/dist/service/SHOGunAPIClient';

export type SHOGunAPIClientProviderProps = {
client?: SHOGunAPIClient;
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useSHOGunAPIClient.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useContext } from 'react';

import SHOGunAPIClient from '@terrestris/shogun-util/dist/service/SHOGunAPIClient';
import { SHOGunAPIClient } from '@terrestris/shogun-util/dist/service/SHOGunAPIClient';

import SHOGunAPIClientContext from '../context/SHOGunAPIClientContext';

Expand Down
2 changes: 1 addition & 1 deletion src/plugin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type {
import { CollapsePanelProps } from 'antd';
import type OlMap from 'ol/Map';

import type SHOGunAPIClient from '@terrestris/shogun-util/dist/service/SHOGunAPIClient';
import { SHOGunAPIClient } from '@terrestris/shogun-util/dist/service/SHOGunAPIClient';

export type ClientPluginLocale = Record<string, {
translation: Record<string, any>;
Expand Down

0 comments on commit b378564

Please sign in to comment.