Revert "Run eslint src --fix"

This commit is contained in:
Eric Nguyen 2023-02-17 09:34:48 +00:00
parent 67678c0f3a
commit 9bbdac088e
82 changed files with 342 additions and 363 deletions

View file

@ -1,6 +1,6 @@
import * as React from 'react';
import { FixedSizeList as List } from 'react-window';
import { type IHistoryState } from '../../Interfaces/IHistoryState';
import { IHistoryState } from '../../Interfaces/IHistoryState';
import { TITLE_BAR_HEIGHT } from '../Sidebar/Sidebar';
interface IHistoryProps {
@ -23,7 +23,7 @@ export function History(props: IHistoryProps): JSX.Element {
<button type="button"
key={reversedIndex}
style={style}
onClick={() => { props.jumpTo(reversedIndex); }}
onClick={() => props.jumpTo(reversedIndex)}
title={step.lastAction}
className={`w-full elements-sidebar-row border-blue-500 whitespace-pre overflow-hidden
text-left text-sm font-medium transition-all ${selectedClass}`}