시그니처 재생 길이 수정

- 3초에서 7초로 변경
This commit is contained in:
Yu Sung 2024-03-15 00:30:51 +09:00
parent 6070bdc6e0
commit 68cc99c263
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ final class LiveRoomViewModel: NSObject, ObservableObject {
@Published var signatureImageUrl = "" { @Published var signatureImageUrl = "" {
didSet { didSet {
if signatureImageUrl.trimmingCharacters(in: .whitespacesAndNewlines).count > 0 { if signatureImageUrl.trimmingCharacters(in: .whitespacesAndNewlines).count > 0 {
DispatchQueue.main.asyncAfter(deadline: .now() + 3.5) { DispatchQueue.main.asyncAfter(deadline: .now() + 7) {
if let imageUrl = self.signatureImageUrls.first { if let imageUrl = self.signatureImageUrls.first {
self.signatureImageUrl = imageUrl self.signatureImageUrl = imageUrl
self.signatureImageUrls.removeFirst() self.signatureImageUrls.removeFirst()