Note:
- Fitur notifikasi ke admin dari user baru - Notifikasi ke user bahwa akunnya telah terverifikasi Fix: - app/(application)/(user)/notifications/index.tsx - app/(application)/(user)/waiting-room.tsx - app/(application)/admin/super-admin/[id]/index.tsx - app/(application)/admin/user-access/[id]/index.tsx - context/AuthContext.tsx - screens/Home/tabsList.ts - service/api-admin/api-admin-user-access.ts - service/api-device-token.ts - service/api-notifications.ts - types/type-notification-category.ts Add: - lib/routeApp.ts ### No Issue
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
import { ITabs } from "@/components/_Interface/types";
|
||||
import { Platform } from "react-native";
|
||||
|
||||
export const tabsHome: any = ({acceptedForumTermsAt, profileId}: {acceptedForumTermsAt: Date, profileId: string}) => [
|
||||
export const tabsHome: any = ({
|
||||
acceptedForumTermsAt,
|
||||
profileId,
|
||||
}: {
|
||||
acceptedForumTermsAt: Date;
|
||||
profileId: string;
|
||||
}) => [
|
||||
{
|
||||
id: "forum",
|
||||
icon: "chatbubble-ellipses-outline",
|
||||
@@ -25,8 +32,8 @@ export const tabsHome: any = ({acceptedForumTermsAt, profileId}: {acceptedForumT
|
||||
activeIcon: "map",
|
||||
label: "Maps",
|
||||
path: "/maps",
|
||||
isActive: true,
|
||||
disabled: false,
|
||||
isActive: Platform.OS === "ios" ? true : false,
|
||||
disabled: Platform.OS === "ios" ? false : true,
|
||||
},
|
||||
{
|
||||
id: "profile",
|
||||
|
||||
Reference in New Issue
Block a user