Skip to content

Commit

Permalink
Fix warnings from eslint from CI/CD
Browse files Browse the repository at this point in the history
Draikth committed Jul 23, 2024
1 parent b72731e commit f66c594
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/post/PostEventForm.tsx
Original file line number Diff line number Diff line change
@@ -229,7 +229,7 @@ export default function PostEventForm(props: Props) {
<br />
<br />
<br />
<button type="submit">Post Event</button>
<button>Post Event</button>
</form>
<ErrorMessage>{errorMessage}</ErrorMessage>
</div>
3 changes: 2 additions & 1 deletion migrations/00002-createTableEvents.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Sql } from 'postgres';
import { z } from 'zod';

// import { z } from 'zod';

// export const eventSchema = z.object({
// name: z.string().min(1),

0 comments on commit f66c594

Please sign in to comment.