Skip to content

Commit

Permalink
Fixing type-check warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
krulis-martin committed Dec 31, 2023
1 parent b53a020 commit ff5a0ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -213,7 +213,7 @@ class ReferenceSolutionDetail extends Component {
files={files}
openAnotherFile={this.openFile}
show={openFileId !== null}
fileId={openFileId}
fileId={openFileId || ''}
fileName={openFileName}
zipEntry={openZipEntry}
isReference={true}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Solutions/SolutionDetail/SolutionDetail.js
Expand Up @@ -261,7 +261,7 @@ class SolutionDetail extends Component {
<SourceCodeViewerContainer
solutionId={id}
show={openFileId !== null}
fileId={openFileId}
fileId={openFileId || ''}
fileName={openFileName}
zipEntry={openZipEntry}
files={files}
Expand Down

0 comments on commit ff5a0ac

Please sign in to comment.