Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### 🐞 Fixed
- Fix crash when opening message overlay in iPad with a TabBar [#627](https://github.com/GetStream/stream-chat-swiftui/pull/627)
- Only show Leave Group option if the user has leave-channel permission [#633](https://github.com/GetStream/stream-chat-swiftui/pull/633)
- Fix a bug with photo attachment picker indicator not displaying [#640](https://github.com/GetStream/stream-chat-swiftui/pull/640)

# [4.65.0](https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.65.0)
_October 18, 2024_
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public struct PhotoAttachmentCell: View {
@State private var compressing = false
@State private var loading = false
@State var requestId: PHContentEditingInputRequestID?
@State var idOverlay = UUID()

var asset: PHAsset
var onImageTap: (AddedAsset) -> Void
Expand Down Expand Up @@ -113,6 +114,7 @@ public struct PhotoAttachmentCell: View {
)
)
}
idOverlay = UUID()
}
}
}
Expand Down Expand Up @@ -150,6 +152,7 @@ public struct PhotoAttachmentCell: View {
)
}
}
.id(idOverlay)
)
.onAppear {
self.loading = false
Expand Down
Loading