Skip to content

Commit

Permalink
pr fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pavloburchak committed Aug 7, 2023
1 parent e27bf1a commit 57ceeb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const App: React.FC<AppProps> = ({plugins}) => {

// Display popup
notificationCall('failed', 'Could not receive data from the specified API endpoint');
if (isApiEndpointLocked()) {
if (!isApiEndpointLocked()) {
setEndpointModalState(true);
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {FullWidthSpace} from '@custom-antd';

import {ConfigurationCard} from '@molecules';

import {useClusterDetailsPick} from '@store/clusterDetails';
import env from '@src/env';

import env from '../../../../../env';
import {useClusterDetailsPick} from '@store/clusterDetails';

import {YourInstallationContainer} from './YourInstallation.styled';
import YourInstallationItem from './YourInstallationItem';
Expand Down

0 comments on commit 57ceeb6

Please sign in to comment.