Skip to content

Commit

Permalink
chore: Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
tevincent committed Nov 28, 2024
1 parent 6a6d7eb commit c94d8c4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ val filesPreviewData = listOf(
// Non-preview file (i.e. pdf, txt, etc.)
fileName = "How to not get fired.pdf",
uid = "How to not get fired.pdf",
isFolder = false,
fileSize = 10_302_130L,
mimeType = null,
localPath = "",
Expand All @@ -40,7 +39,6 @@ val filesPreviewData = listOf(
// Preview file (i.e. png, jpg, etc.)
fileName = "Opening images tutorial.png",
uid = "Opening images tutorial.png",
isFolder = false,
fileSize = 456_782L,
mimeType = null,
localPath = "https://picsum.photos/200/300",
Expand All @@ -49,7 +47,6 @@ val filesPreviewData = listOf(
FileUi(
fileName = "The 5 step guide to turning it off and on again.docx",
uid = "The 5 step guide to turning it off and on again.docx",
isFolder = false,
fileSize = 89_723_143L,
mimeType = null,
localPath = "",
Expand All @@ -58,7 +55,6 @@ val filesPreviewData = listOf(
FileUi(
uid = UUID.randomUUID().toString(),
fileName = "Learning to Copy and Paste: A Complete Guide.docx",
isFolder = false,
fileSize = 237_866_728L,
mimeType = null,
localPath = null,
Expand All @@ -67,7 +63,6 @@ val filesPreviewData = listOf(
FileUi(
uid = UUID.randomUUID().toString(),
fileName = "Introduction to Turning It Off and On Again.pptx",
isFolder = false,
fileSize = 98_723_143L,
mimeType = null,
localPath = null,
Expand All @@ -76,7 +71,6 @@ val filesPreviewData = listOf(
FileUi(
uid = UUID.randomUUID().toString(),
fileName = "The 5-Step Guide to Not Breaking Your Code.txt",
isFolder = false,
fileSize = 57_689_032L,
mimeType = null,
localPath = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ class ImportationFilesManager @Inject constructor(
FileUi(
uid = fileToImport.fileName,
fileName = fileToImport.fileName,
isFolder = false,
fileSize = fileToImport.fileSizeInBytes,
mimeType = FileType.guessMimeTypeFromFileName(fileToImport.fileName),
localPath = copiedFile.toUri().toString(),
Expand Down Expand Up @@ -134,7 +133,6 @@ class ImportationFilesManager @Inject constructor(
FileUi(
uid = localFile.name,
fileName = localFile.name,
isFolder = false,
fileSize = fileSizeInBytes,
mimeType = null,
localPath = localFile.toUri().toString(),
Expand Down

0 comments on commit c94d8c4

Please sign in to comment.