Skip to content

Commit

Permalink
Test update
Browse files Browse the repository at this point in the history
  • Loading branch information
gorbatiukcom committed Apr 7, 2024
1 parent 568ffed commit 1a5787f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/** @type {import('next').NextConfig} */

const nextConfig = {};
const nextConfig = {
reactStrictMode: false
};

module.exports = nextConfig;
6 changes: 3 additions & 3 deletions src/app/contacts/contacts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default function Contacts() {
<Input
{...InputStyle}
id="email"
placeholder="Wpisz swój e-mail tutaj..."
placeholder="Wpisz swój e-mail tutaj"
{...register("email", {
required: "To pole jest wymagane",
pattern: {
Expand All @@ -90,7 +90,7 @@ export default function Contacts() {
<Input
{...InputStyle}
id="phone"
placeholder="Wpisz swój telefon tutaj..."
placeholder="Wpisz swój telefon tutaj"
{...register("phone")}
/>
<FormErrorMessage>{errors.phone && errors.phone.message}</FormErrorMessage>
Expand All @@ -100,7 +100,7 @@ export default function Contacts() {
<Textarea
{...InputStyle}
id="message"
placeholder="Wpisz swoją wiadomosć tutaj..."
placeholder="Wpisz swoją wiadomosć tutaj"
rows={4}
{...register("message", {
required: "To pole jest wymagane",
Expand Down

0 comments on commit 1a5787f

Please sign in to comment.