Skip to content

Commit

Permalink
- checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
boriskovar-m2ms committed Dec 13, 2023
1 parent a6d8930 commit a01f097
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,6 @@ const ObservationCmpView = memo(

const [loadingAll, setLoadingAll] = useState(false);
const [loadingLigand, setLoadingLigand] = useState(false);

const onLigand = calledFromSelectAll => {
setLoadingLigand(true);
if (calledFromSelectAll === true && selectedAll.current === true) {
Expand Down Expand Up @@ -810,7 +809,6 @@ const ObservationCmpView = memo(
};

const [loadingProtein, setLoadingProtein] = useState(false);

const onProtein = calledFromSelectAll => {
setLoadingProtein(true);
if (calledFromSelectAll === true && selectedAll.current === true) {
Expand Down Expand Up @@ -850,7 +848,6 @@ const ObservationCmpView = memo(
};

const [loadingComplex, setLoadingComplex] = useState(false);

const onComplex = calledFromSelectAll => {
setLoadingComplex(true);
if (calledFromSelectAll === true && selectedAll.current === true) {
Expand Down Expand Up @@ -889,7 +886,6 @@ const ObservationCmpView = memo(
};

const [loadingSurface, setLoadingSurface] = useState(false);

const onSurface = () => {
setLoadingSurface(true);
if (isSurfaceOn === false) {
Expand Down Expand Up @@ -925,7 +921,6 @@ const ObservationCmpView = memo(
};

const [loadingDensity, setLoadingDensity] = useState(false);

const onDensity = () => {
setLoadingDensity(true);
if (isDensityOn === false && isDensityCustomOn === false) {
Expand Down Expand Up @@ -990,7 +985,6 @@ const ObservationCmpView = memo(
};

const [loadingVector, setLoadingVector] = useState(false);

const onVector = () => {
setLoadingVector(true);
if (isVectorOn === false) {
Expand Down

0 comments on commit a01f097

Please sign in to comment.