Skip to content

Commit

Permalink
[#3903] Move WatchersScreen to SelectCurrencyPurpose
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaozhan committed Sep 13, 2024
1 parent 10487e7 commit 17401f9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ios/CCC/UI/Watchers/WatcherItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,15 @@ struct WatcherItem: View {
amount = "\(watcher.rate)"
}.sheet(
isPresented: $isSourceBarShown,
content: { SelectCurrencyRootView(isBarShown: $isSourceBarShown, purpose: SelectCurrencyPurpose.Source(watcher: watcher)) }
content: {
SelectCurrencyRootView(isBarShown: $isSourceBarShown, purpose: SelectCurrencyPurpose.Source(watcher: watcher))

Check failure on line 79 in ios/CCC/UI/Watchers/WatcherItem.swift

View workflow job for this annotation

GitHub Actions / CodeAnalysis

Line Length Violation: Line should be 120 characters or less; currently it has 126 characters (line_length)

Check warning on line 79 in ios/CCC/UI/Watchers/WatcherItem.swift

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

ios/CCC/UI/Watchers/WatcherItem.swift#L79

Line should be 120 characters or less; currently it has 126 characters
}
)
.sheet(
isPresented: $isTargetBarShown,
content: { SelectCurrencyRootView(isBarShown: $isTargetBarShown, purpose: SelectCurrencyPurpose.Target(watcher: watcher)) }
content: {
SelectCurrencyRootView(isBarShown: $isTargetBarShown, purpose: SelectCurrencyPurpose.Target(watcher: watcher))

Check failure on line 85 in ios/CCC/UI/Watchers/WatcherItem.swift

View workflow job for this annotation

GitHub Actions / CodeAnalysis

Line Length Violation: Line should be 120 characters or less; currently it has 126 characters (line_length)

Check warning on line 85 in ios/CCC/UI/Watchers/WatcherItem.swift

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

ios/CCC/UI/Watchers/WatcherItem.swift#L85

Line should be 120 characters or less; currently it has 126 characters
}
)
}
}

0 comments on commit 17401f9

Please sign in to comment.