chore: build mobile

This commit is contained in:
2026-06-09 21:01:10 +02:00
parent 8a853074b7
commit 0317fb45df
2 changed files with 0 additions and 5 deletions
-4
View File
@@ -432,10 +432,6 @@ export const getDeliverymanLocationForCommand = async (commandId: number) => {
}
};
// ============================================
// PRODUITS
// ============================================
export const getAllProductsAdmin = async (): Promise<{
success: boolean;
data: Product[];
-1
View File
@@ -21,7 +21,6 @@ export const setUsername = (username: string) =>
AsyncStorage.setItem(USERNAME_KEY, username);
export const removeUsername = () => AsyncStorage.removeItem(USERNAME_KEY);
// Admin username
export const getAdminUsername = () => AsyncStorage.getItem(ADMIN_USERNAME_KEY);
export const setAdminUsername = (username: string) =>
AsyncStorage.setItem(ADMIN_USERNAME_KEY, username);