Skip to content

Commit 23fc069

Browse files
committed
Placeholders, PWA fix
1 parent 3625dfd commit 23fc069

5 files changed

Lines changed: 6 additions & 2 deletions

File tree

RELEASE_NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
### ✨ Features
22

3-
- Unsubscribe page updated.
3+
- Placeholder text added for login/register forms.
44
- New features and improvements.
55

66
### 🐛 Bug Fixes
77

8+
- PWA start url fixed.
89
- Various bug fixes and optimizations.
910

1011
### 📚 Docs

apps/web/src/pages/auth/login.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ export const Login = () => {
119119
{...field}
120120
type={showPassword ? "text" : "password"}
121121
className="pr-10"
122+
placeholder="********"
122123
/>
123124
</FormControl>
124125
<button

apps/web/src/pages/auth/signup.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ export const Signup = () => {
106106
{...field}
107107
type={showPassword ? "text" : "password"}
108108
className="pr-10"
109+
placeholder="********"
109110
/>
110111
</FormControl>
111112
<button

apps/web/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export default defineConfig({
1515
short_name: "LetterSpace",
1616
description: "Open source newsletter app",
1717
theme_color: "#ffffff",
18+
start_url: "/",
1819
icons: [
1920
{
2021
src: "pwa-64x64.png",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.4.5",
2+
"version": "0.4.6",
33
"name": "letterspace",
44
"private": true,
55
"scripts": {

0 commit comments

Comments
 (0)