Skip to content

Commit

Permalink
format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikpersistent committed Sep 13, 2024
1 parent 29205dc commit 82be95b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ const Content: React.FC<ContentProps> = ({
if (response.data.status === 'Failure') {
throw new Error(response.data.error);
}
const isStartFromBegining = retryoption === RETRY_OPIONS[0] || retryoption===RETRY_OPIONS[1];
const isStartFromBegining = retryoption === RETRY_OPIONS[0] || retryoption === RETRY_OPIONS[1];
setFilesData((prev) => {
return prev.map((f) => {
return f.name === filename
Expand Down Expand Up @@ -891,4 +891,4 @@ const Content: React.FC<ContentProps> = ({
);
};

export default Content;
export default Content;
4 changes: 2 additions & 2 deletions frontend/src/components/FileTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {
} from '../utils/Utils';
import { SourceNode, CustomFile, FileTableProps, UserCredentials, statusupdate, ChildRef } from '../types';
import { useCredentials } from '../context/UserCredentials';
import { ArrowPathIconSolid, MagnifyingGlassCircleIconSolid } from '@neo4j-ndl/react/icons';
import { MagnifyingGlassCircleIconSolid } from '@neo4j-ndl/react/icons';
import CustomProgressBar from './UI/CustomProgressBar';
import subscribe from '../services/PollingAPI';
import { triggerStatusUpdateAPI } from '../services/ServerSideStatusUpdateAPI';
Expand All @@ -49,7 +49,7 @@ import IndeterminateCheckbox from './UI/CustomCheckBox';
import { showErrorToast, showNormalToast } from '../utils/toasts';
let onlyfortheFirstRender = true;
const FileTable = forwardRef<ChildRef, FileTableProps>((props, ref) => {
const { isExpanded, connectionStatus, setConnectionStatus, onInspect, onRetry } = props;
const { isExpanded, connectionStatus, setConnectionStatus, onInspect } = props;
const { filesData, setFilesData, model, rowSelection, setRowSelection, setSelectedRows, setProcessedCount, queue } =
useFileContext();
const { userCredentials } = useCredentials();
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/QuickStarter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ const QuickStarter: React.FunctionComponent = () => {
</UserCredentialsWrapper>
);
};
export default QuickStarter;
export default QuickStarter;

0 comments on commit 82be95b

Please sign in to comment.