Skip to content

Commit

Permalink
Fix typo in atom import
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWags committed Oct 30, 2024
1 parent 9ecb9eb commit 47376b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/upset/src/components/AltTextSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import '../index.css';
import { PlotInformation } from './custom/PlotInformation';
import { UpsetActions } from '../provenance';
import { plotInformationSelector } from '../atoms/config/plotInformationAtom';
import { canEditPlotInformationAtom } from '../atoms/config/canEditPlotInformationAtoms';
import { canEditPlotInformationAtom } from '../atoms/config/canEditPlotInformationAtom';

/**
* Props for the AltTextSidebar component.
Expand Down
2 changes: 1 addition & 1 deletion packages/upset/src/components/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { dataAtom } from '../atoms/dataAtom';
import { allowAttributeRemovalAtom } from '../atoms/config/allowAttributeRemovalAtom';
import { contextMenuAtom } from '../atoms/contextMenuAtom';
import { upsetConfigAtom } from '../atoms/config/upsetConfigAtoms';
import { canEditPlotInformationAtom } from '../atoms/config/canEditPlotInformationAtoms';
import { canEditPlotInformationAtom } from '../atoms/config/canEditPlotInformationAtom';
import {
getActions, initializeProvenanceTracking, UpsetActions, UpsetProvenance,
} from '../provenance';
Expand Down
2 changes: 1 addition & 1 deletion packages/upset/src/components/custom/PlotInformation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
useContext, useState, useCallback,
} from 'react';
import { plotInformationSelector } from '../../atoms/config/plotInformationAtom';
import { canEditPlotInformationAtom } from '../../atoms/config/canEditPlotInformationAtoms';
import { canEditPlotInformationAtom } from '../../atoms/config/canEditPlotInformationAtom';
import { ProvenanceContext } from '../Root';

/**
Expand Down

0 comments on commit 47376b7

Please sign in to comment.