Skip to content

Commit

Permalink
@uppy/dashboard: fix TypeError when file.remote is nullish (#4825)
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 authored Jan 2, 2024
1 parent df6043d commit 5596369
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const renderFileName = (props) => {

const renderAuthor = (props) => {
const { author } = props.file.meta
const { providerName } = props.file.remote
const providerName = props.file.remote?.providerName
const dot = `\u00B7`

if (!author) {
Expand Down

0 comments on commit 5596369

Please sign in to comment.