Skip to content

Commit

Permalink
chore: Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
tevincent committed Dec 4, 2024
1 parent 7761a97 commit cdd6862
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,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 +66,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 +74,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 @@ -135,7 +134,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 cdd6862

Please sign in to comment.