diff options
Diffstat (limited to 'apps/mobile/app/dashboard/lists')
| -rw-r--r-- | apps/mobile/app/dashboard/lists/new.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/mobile/app/dashboard/lists/new.tsx b/apps/mobile/app/dashboard/lists/new.tsx index 2cd690f5..55315e70 100644 --- a/apps/mobile/app/dashboard/lists/new.tsx +++ b/apps/mobile/app/dashboard/lists/new.tsx @@ -1,9 +1,10 @@ import React, { useState } from "react"; -import { Text, View } from "react-native"; +import { View } from "react-native"; import { router } from "expo-router"; import { Button } from "@/components/ui/Button"; import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView"; import { Input } from "@/components/ui/Input"; +import { Text } from "@/components/ui/Text"; import { useToast } from "@/components/ui/Toast"; import { useCreateBookmarkList } from "@karakeep/shared-react/hooks/lists"; @@ -40,14 +41,16 @@ const NewListPage = () => { <View className="flex flex-row items-center gap-1"> <Text className="shrink p-2">🚀</Text> <Input - className="flex-1" + className="flex-1 bg-card" onChangeText={setText} placeholder="List Name" autoFocus autoCapitalize={"none"} /> </View> - <Button disabled={isPending} onPress={onSubmit} label="Save" /> + <Button disabled={isPending} onPress={onSubmit}> + <Text>Save</Text> + </Button> </View> </CustomSafeAreaView> ); |
