One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links 📅 calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update Settings.tsx

authored by

Evan Huang and committed by
GitHub
eacb7f08 d16ab3b3

+1 -1
+1 -1
components/Settings.tsx
··· 100 100 <Label htmlFor="theme">{language === "zh" ? "主题" : "Theme"}</Label> 101 101 <Select> 102 102 <SelectTrigger> 103 - <SelectValue /> 103 + <SelectValue placeholder="Theme" /> 104 104 </SelectTrigger> 105 105 <SelectContent> 106 106 <SelectItem value="light" onClick={() => setTheme("light")}>{language === "zh" ? "亮色" : "Light"}</SelectItem>