mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Use const instead of var
This commit is contained in:
parent
97981f9a7b
commit
87c73adebb
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ export default function ImportUploader(): JSX.Element {
|
|||
</StyledText>
|
||||
<select
|
||||
onChange={(event) => {
|
||||
var changeType: UploadImportFileType =
|
||||
const changeType: UploadImportFileType =
|
||||
UploadImportFileType[
|
||||
event.currentTarget
|
||||
.value as keyof typeof UploadImportFileType
|
||||
|
|
|
|||
Loading…
Reference in a new issue