Skip to content

Commit

Permalink
chore: Fix FileUiListPreviewParameterProvider.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
tevincent committed Dec 4, 2024
1 parent 8be9ff8 commit 61bda97
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ val filesPreviewData = listOf(
fileSize = 10_302_130L,
mimeType = null,
localPath = "",
path = null,
path = "",
),
FileUi(
// Preview file (i.e. png, jpg, etc.)
Expand All @@ -44,7 +44,7 @@ val filesPreviewData = listOf(
fileSize = 456_782L,
mimeType = null,
localPath = "https://picsum.photos/200/300",
path = null,
path = "",
),
FileUi(
uid = "The 5 step guide to turning it off and on again.docx",
Expand All @@ -53,7 +53,7 @@ val filesPreviewData = listOf(
fileSize = 89_723_143L,
mimeType = null,
localPath = "",
path = null,
path = "",
),
FileUi(
uid = UUID.randomUUID().toString(),
Expand All @@ -62,7 +62,7 @@ val filesPreviewData = listOf(
fileSize = 237_866_728L,
mimeType = null,
localPath = null,
path = null,
path = "",
),
FileUi(
uid = UUID.randomUUID().toString(),
Expand All @@ -71,7 +71,7 @@ val filesPreviewData = listOf(
fileSize = 98_723_143L,
mimeType = null,
localPath = null,
path = null,
path = "",
),
FileUi(
uid = UUID.randomUUID().toString(),
Expand All @@ -80,6 +80,6 @@ val filesPreviewData = listOf(
fileSize = 57_689_032L,
mimeType = null,
localPath = null,
path = null,
path = "",
),
)

0 comments on commit 61bda97

Please sign in to comment.