13 lines
773 B
Plaintext
13 lines
773 B
Plaintext
The file /home/project/src/pages/washing/Dashboard.tsx has been updated. Made 1 replacement.
|
|
|
|
Here's the result of running `cat -n` on a snippet of the edited file:
|
|
108→ <motion.button
|
|
109→ whileHover={{ scale: 1.05 }}
|
|
110→ whileTap={{ scale: 0.95 }}
|
|
111→ onClick={() => setShowAccountCard(true)}
|
|
112→ className="w-8 h-8 sm:w-10 sm:h-10 bg-gradient-to-br from-violet-400 to-fuchsia-400 rounded-xl flex items-center justify-center shadow-lg shadow-violet-400/20 cursor-pointer overflow-hidden"
|
|
113→ >
|
|
114→ {(auth.user as any)?.image_url ? (
|
|
115→ <img
|
|
116→ src={(auth.user as any).image_url}
|
|
117→ alt="头像" |