Halaman unblock user

Add:
- app/(application)/(user)/profile/[id]/blocked-list.tsx
app/(application)/(user)/profile/[id]/detail-blocked.tsx
components/_ShareComponent/ListEmptyComponent.tsx
components/_ShareComponent/ListLoaderFooterComponent.tsx
components/_ShareComponent/ListSkeletonComponent.tsx
hooks/use-paginated-api.ts
service/api-client/api-blocked.ts

Fix:
modified:   app/(application)/(user)/profile/_layout.tsx
modified:   components/_ShareComponent/NewWrapper.tsx
modified:   components/index.ts
modified:   screens/Profile/ListPage.tsx
modified:   styles/global-styles.ts

### No Issue
This commit is contained in:
2025-11-28 13:55:48 +08:00
parent d471682ae7
commit 8a900e9469
12 changed files with 474 additions and 3 deletions

View File

@@ -40,8 +40,8 @@ interface StaticModeProps extends BaseProps {
interface ListModeProps extends BaseProps {
children?: never;
listData: any[];
renderItem: FlatListProps<any>["renderItem"];
listData?: any[];
renderItem?: FlatListProps<any>["renderItem"];
onEndReached?: () => void;
// ✅ Gunakan tipe yang kompatibel dengan FlatList
ListHeaderComponent?: React.ReactElement | null;