Skip to content

Commit

Permalink
lint: fixed lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sijumoncy committed Jul 17, 2024
1 parent 527ac23 commit f48c803
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// import { Cog8ToothIcon } from '@heroicons/react/24/outline';
import { useTranslation } from 'react-i18next';
// import { useTranslation } from 'react-i18next';

function TranslationMergNavBar({
conflictedBooks, selectedBook, setSelectedBook, resolvedBooks, disableSelection, conflictedChapters, selectedChapter, setSelectedChapter,
}) {
const { t } = useTranslation();
// const { t } = useTranslation();
return (
<div className="bg-white border-2 rounded-md border-black h-[78vh] overflow-hidden ">
<div className="flex items-center justify-between bg-black py-1.5 px-2.5">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ import { readUsfmFile } from '@/core/projects/userSettings';
import localforage from 'localforage';
import { flushSync } from 'react-dom';
import TranslationMergNavBar from './TranslationMergNavBar';
import * as logger from '../../logger';
// import * as logger from '../../logger';
import LoadingScreen from '../Loading/LoadingScreen';
import UsfmConflictEditor from './UsfmConflictEditor';
import { processAndIdentiyVerseChangeinUSFMJsons } from './processUsfmObjs';
import packageInfo from '../../../../package.json';
import { commitChanges } from '../Sync/Isomorphic/utils';
/* eslint-disable import/no-unresolved , import/extensions */
import { useGrammartoPerf } from '@/hooks2/useGrammartoPerf';

const grammar = require('usfm-grammar');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
import React, { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
import {
ArrowSmallDownIcon, ArrowSmallUpIcon, ArrowsUpDownIcon, ArrowPathRoundedSquareIcon,
ArrowSmallDownIcon, ArrowSmallUpIcon, ArrowPathRoundedSquareIcon,
} from '@heroicons/react/20/solid';

/* eslint-disable no-unused-vars */
function UsfmConflictEditor({
usfmJsons, currentProjectMeta, selectedChapter, setUsfmJsons, setChapterResolveDone, resolvedChapters, selectedBook, resolvedBooks, conflictedChapters,
}) {
Expand Down

0 comments on commit f48c803

Please sign in to comment.