Skip to content

Commit

Permalink
Opened alert pop up at the correct place instead centre
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-nirali-s committed Dec 9, 2024
1 parent ec44440 commit 25832dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Splito/UI/Home/Expense/AddExpenseView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,14 @@ struct AddNoteImageFooterView: View {
DatePickerView(date: $date)

ImageAttachmentView(image: image, imageUrl: imageUrl, handleImageBtnTap: handleImageTap)
.confirmationDialog("", isPresented: $showImagePickerOptions, titleVisibility: .hidden) {
ImagePickerOptionsView(image: image, imageUrl: imageUrl, handleActionSelection: handleActionSelection)
}

NoteButtonView(isNoteEmpty: isNoteEmpty, handleNoteBtnTap: handleNoteBtnTap)
}
.padding(.vertical, 12)
.padding(.horizontal, 16)
.confirmationDialog("", isPresented: $showImagePickerOptions, titleVisibility: .hidden) {
ImagePickerOptionsView(image: image, imageUrl: imageUrl, handleActionSelection: handleActionSelection)
}
}
}

Expand Down

0 comments on commit 25832dc

Please sign in to comment.