Added the disabled implementation for elements

This commit is contained in:
Clément Le Bihan
2023-04-10 00:46:16 +02:00
parent c5ba72229f
commit 2f19c0e547
2 changed files with 51 additions and 33 deletions

View File

@@ -35,7 +35,7 @@ const getInitials = (name: string) => {
const ProfileSettings = ({ navigation }: { navigation: any }) => {
const [user, setUser] = useState<User | null>(null);
const dispatch = useDispatch();
const [toggle, setToggle] = useState(false);
const [toggle, setToggle] = useState(true);
const [selectValue, setSelectValue] = useState("fr");
useEffect(() => {