From 3b10fa4fd7f255474f25a39a7156365e1cb59630 Mon Sep 17 00:00:00 2001 From: Matthew Patrick <Matthew.535200018@stu.untar.ac.id> Date: Mon, 16 May 2022 02:21:36 +0700 Subject: [PATCH] --- lib/components/menu.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/components/menu.dart b/lib/components/menu.dart index e254211..c4f891b 100644 --- a/lib/components/menu.dart +++ b/lib/components/menu.dart @@ -1,6 +1,4 @@ import 'dart:math' as math; -import 'package:nekoya_flutter/screens/forgotpassword.dart'; -import 'package:nekoya_flutter/screens/otp.dart'; import 'package:universal_html/html.dart' as html; import 'package:flutter/material.dart'; @@ -76,7 +74,7 @@ class _MenuState extends State<Menu> { html.window.history.pushState(null, '', '/products'); _selectedWidget = const Products(); } else if (index == 2) { - _selectedWidget = const ForgotPassword(); + _selectedWidget = const Home(); } else if (index == 3) { html.window.history.pushState(null, '', '/cart'); _selectedWidget = const Cart();