Skip to content

Commit

Permalink
fix: remove document ID at top of document preview
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurChalard committed Dec 19, 2024
1 parent 70f9906 commit 9315444
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,6 @@ fun DocumentPreview(
Column(modifier = Modifier.fillMaxWidth().padding(paddingValue)) {
Box(modifier = Modifier.fillMaxSize().background(MaterialTheme.colorScheme.background)) {
Column(modifier = Modifier.fillMaxWidth()) {
Text(
text = "Document ID: ${documentContainer.ref.id}",
style = MaterialTheme.typography.bodyLarge,
modifier = Modifier.padding(8.dp).testTag("documentTitle"))

if (uri != null) {
if (documentContainer.fileFormat == DocumentFileFormat.PDF) {
val pdfState =
Expand Down

0 comments on commit 9315444

Please sign in to comment.