Skip to content

Commit

Permalink
Fixed linting problems that are newly appearing
Browse files Browse the repository at this point in the history
  • Loading branch information
tjcouch-sil committed Apr 8, 2024
1 parent a55d991 commit e26a14a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export type ChapterViewProps = {

function ChapterView({ projectId, projectMetadata, verseRef }: ChapterViewProps) {
// This ref becomes defined when passed to the editor.
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const editorRef = useRef<EditorRef>(null!);
// eslint-disable-next-line no-type-assertion/no-type-assertion
const editorRef = useRef<EditorRef>(undefined!);
const [usj] = useProjectUsj(projectId, verseRef);

useEffect(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

.editor-input {
padding: 0 0;
padding: 0;
}

body {
Expand Down

0 comments on commit e26a14a

Please sign in to comment.