Skip to content

Commit

Permalink
chore: delete wrong color
Browse files Browse the repository at this point in the history
  • Loading branch information
rnr committed Nov 19, 2024
1 parent f209262 commit 20aaaa5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Core/Core/View/Base/OfflineSnackBarView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,13 @@ public struct OfflineSnackBarView: View {
HStack(spacing: 12) {
Text(CoreLocalization.NoInternet.offline)
.accessibilityIdentifier("no_internet_text")
.foregroundColor(Theme.Colors.snackbarTextColor)
Spacer()
Button(action: {
withAnimation {
dismiss = true
}
}, label: {
Text(CoreLocalization.NoInternet.dismiss)
.foregroundColor(Theme.Colors.snackbarTextColor)
})
.accessibilityIdentifier("no_internet_dismiss_button")
Button(action: {
Expand All @@ -49,7 +47,6 @@ public struct OfflineSnackBarView: View {
}
}, label: {
Text(CoreLocalization.NoInternet.reload)
.foregroundColor(Theme.Colors.snackbarTextColor)
}
)
.accessibilityIdentifier("no_internet_reload_button")
Expand Down

0 comments on commit 20aaaa5

Please sign in to comment.