Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ jobs:
npm install &&
npm run build &&
sudo rm -rf /var/www/html/* &&
sudo cp -r * /var/www/html/ &&
sudo cp -r out/. /var/www/html/ &&
sudo chown -R www-data:www-data /var/www/html
"
2 changes: 1 addition & 1 deletion frontend/app/register/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default function RegisterPage() {
<Label htmlFor="lastName">שם משפחה</Label>
<Input
id="lastName"
placeholder="כהן"
placeholder="לוי"
value={formData.lastName}
className="text-right"
onChange={(e) => handleChange("lastName", e.target.value)}
Expand Down
1 change: 1 addition & 0 deletions frontend/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
typescript: {
ignoreBuildErrors: true,
},
Expand Down