商品浏览页构建前最后一次更新

This commit is contained in:
2026-08-02 00:21:54 +08:00
parent d37a93ab9e
commit e423ab2d73
146 changed files with 3449 additions and 1342 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export default function ThemeToggle() {
}, [toggleTheme])
return (
<View className='theme-toggle' onClick={handleToggle}>
<View className='theme-toggle' onTap={handleToggle}>
<Text className='theme-icon'>{theme === 'light' ? '🌙' : '☀️'}</Text>
</View>
)