Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/app/routes/app_routes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ abstract class _Paths {
_Paths._();
static const HOME = '/home';
static const ONBOARDING = '/onboarding';
static const SPLASH = '/splash';
static const SPLASH = '/';
static const MANAGE_TASK_SERVER = '/manage-task-server';
static const DETAIL_ROUTE = '/detail-route';
static const PROFILE = '/profile';
Expand Down
2 changes: 1 addition & 1 deletion test/routes/app_routes_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ void main() {
test('Routes should be defined correctly', () {
expect(Routes.HOME, '/home');
expect(Routes.ONBOARDING, '/onboarding');
expect(Routes.SPLASH, '/splash');
expect(Routes.SPLASH, '/');
expect(Routes.MANAGE_TASK_SERVER, '/manage-task-server');
expect(Routes.DETAIL_ROUTE, '/detail-route');
expect(Routes.PROFILE, '/profile');
Expand Down