Skip to content

Commit

Permalink
[STYLE] #20 : Add Final Line
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Oct 9, 2023
1 parent 2b4aefe commit ec84175
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ interface AuthRepository {
suspend fun hasPendingResult(): Boolean

suspend fun signIn(email: String): Result<String>
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ abstract class AuthDataSourceModule {
@Binds
@ActivityScoped
abstract fun providesAuthDataSource(
authDataSourceImpl: AuthDataSourceImpl
authDataSourceImpl: AuthDataSourceImpl,
): AuthDataSource
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ object NetworkModule {
@Provides
@Singleton
fun providesFirestore(): FirebaseFirestore = Firebase.firestore
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class SplashFragment :
private fun navigateToNotice() {
findNavController().navigate(
"wapp://feature/nav_notice".toUri(),
NavOptions.Builder().setPopUpTo(R.id.splashFragment, true).build()
NavOptions.Builder().setPopUpTo(R.id.splashFragment, true).build(),
)
}
}
}

0 comments on commit ec84175

Please sign in to comment.