Skip to content

Commit

Permalink
fix: social media, phone number
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammedKpln committed Mar 4, 2024
1 parent 330c737 commit a09c545
Show file tree
Hide file tree
Showing 24 changed files with 487 additions and 243 deletions.
29 changes: 0 additions & 29 deletions android/app/src/main/AndroidManifest.xml.orig

This file was deleted.

13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
"type": "module",
"scripts": {
"dev": "vite",
"predev": "yarn gen-supabase-types",
"predev": "yarn gen-supabase-types-local",
"prebuild": "yarn gen-supabase-types",
"build": "ionic build --prod",
"preview": "vite preview",
"seed-emulator": "tsx ./scripts/seed_emulator.ts",
"test.unit": "vitest",
"lint": "eslint . --ext .ts",
"gen-supabase-types": "npx supabase gen types typescript --project-id \"$PROJECT_REF\" > src/models/supabase.ts"
"gen-supabase-types": "npx supabase gen types typescript --project-id \"$PROJECT_REF\" > src/models/supabase.ts",
"gen-supabase-types-local": "npx supabase gen types typescript --local > src/models/supabase.ts"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.10.0"
Expand All @@ -39,10 +40,10 @@
"@ionic/react": "^7.7.0",
"@ionic/react-router": "^7.7.0",
"@supabase/supabase-js": "^2.39.6",
"@tanstack/query-async-storage-persister": "^5.24.1",
"@tanstack/react-query": "^5.24.1",
"@tanstack/react-query-devtools": "^5.24.1",
"@tanstack/react-query-persist-client": "^5.24.1",
"@tanstack/query-async-storage-persister": "^5.24.8",
"@tanstack/react-query": "^5.24.8",
"@tanstack/react-query-devtools": "^5.24.8",
"@tanstack/react-query-persist-client": "^5.24.8",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"base64-arraybuffer": "^1.0.2",
Expand Down
6 changes: 3 additions & 3 deletions src/components/Tags/tag_card.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import { motion } from "framer-motion";
import styles from "./tag_card.module.scss";

type IProps = {
name: string;
note: string;
name: string | null;
note: string | null;
isActive: boolean;
icon?: string;
icon: string | null;
created_at: string;
tagUid: string;
};
Expand Down
Loading

0 comments on commit a09c545

Please sign in to comment.