Skip to content

Commit

Permalink
[frontend] fix lint (#5575)
Browse files Browse the repository at this point in the history
  • Loading branch information
frapuks authored and jpkha committed Apr 2, 2024
1 parent 69e040e commit 2c023dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import * as R from 'ramda';
import Box from '@mui/material/Box';
import Tabs from '@mui/material/Tabs';
import Tab from '@mui/material/Tab';
import StixCoreRelationship from '../../common/stix_core_relationships/StixCoreRelationship';
import withRouter from '../../../../utils/compat-router/withRouter';
import { QueryRenderer, requestSubscription } from '../../../../relay/environment';
import ObservedData from './ObservedData';
Expand All @@ -18,7 +19,6 @@ import ContainerStixDomainObjects from '../../common/containers/ContainerStixDom
import ContainerStixCyberObservables from '../../common/containers/ContainerStixCyberObservables';
import inject18n from '../../../../components/i18n';
import Breadcrumbs from '../../../../components/Breadcrumbs';
import StixCoreRelationship from '@components/common/stix_core_relationships/StixCoreRelationship';

const subscription = graphql`
subscription RootObservedDataSubscription($id: ID!) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';
import { graphql, createFragmentContainer } from 'react-relay';
import { Route, Routes } from 'react-router-dom';
import StixCyberObservableKnowledgeEntities from './StixCyberObservableEntities';
import StixCyberObservableNestedEntities from './StixCyberObservableNestedEntities';
import StixCoreRelationship from '@components/common/stix_core_relationships/StixCoreRelationship';
import { Route, Routes } from 'react-router-dom';
import StixCoreRelationship from '../../common/stix_core_relationships/StixCoreRelationship';

const StixCyberObservableKnowledgeComponent = (props) => {
const { stixCyberObservable } = props;
Expand Down

0 comments on commit 2c023dd

Please sign in to comment.