-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "feat(ErrorBanner): offline banner (#478)"
This reverts commit 10d2bad.
- Loading branch information
1 parent
10d2bad
commit bf5b059
Showing
18 changed files
with
15 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
iosApp/iosAppTests/ViewModels/ErrorBannerViewModelTests.swift
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 1 addition & 4 deletions
5
shared/src/androidMain/kotlin/com/mbta/tid/mbta_app/PlatformModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
package com.mbta.tid.mbta_app | ||
|
||
import com.mbta.tid.mbta_app.network.INetworkConnectivityMonitor | ||
import com.mbta.tid.mbta_app.network.NetworkConnectivityMonitor | ||
import com.mbta.tid.mbta_app.utils.AndroidSystemPaths | ||
import com.mbta.tid.mbta_app.utils.SystemPaths | ||
import org.koin.dsl.module | ||
|
||
fun platformModule() = module { | ||
includes( | ||
module { single { createDataStore(get()) } }, | ||
module { single<SystemPaths> { AndroidSystemPaths(get()) } }, | ||
module { single<INetworkConnectivityMonitor> { NetworkConnectivityMonitor(get()) } } | ||
module { single<SystemPaths> { AndroidSystemPaths(get()) } } | ||
) | ||
} |
33 changes: 0 additions & 33 deletions
33
shared/src/androidMain/kotlin/com/mbta/tid/mbta_app/network/NetworkConnectivityMonitor.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
shared/src/commonMain/kotlin/com/mbta/tid/mbta_app/network/NetworkConnectivityMonitor.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 1 addition & 4 deletions
5
shared/src/iosMain/kotlin/com/mbta/tid/mbta_app/PlatformModule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
package com.mbta.tid.mbta_app | ||
|
||
import com.mbta.tid.mbta_app.network.INetworkConnectivityMonitor | ||
import com.mbta.tid.mbta_app.network.NetworkConnectivityMonitor | ||
import com.mbta.tid.mbta_app.utils.IOSSystemPaths | ||
import com.mbta.tid.mbta_app.utils.SystemPaths | ||
import org.koin.dsl.module | ||
|
||
fun platformModule() = module { | ||
includes( | ||
module { single { createDataStore() } }, | ||
module { single<SystemPaths> { IOSSystemPaths() } }, | ||
module { single<INetworkConnectivityMonitor> { NetworkConnectivityMonitor() } } | ||
module { single<SystemPaths> { IOSSystemPaths() } } | ||
) | ||
} |
Oops, something went wrong.