Skip to content

Commit

Permalink
Merge pull request #237 from ixartz/eslint-tailwind-new
Browse files Browse the repository at this point in the history
chore: change sentry project name
  • Loading branch information
ixartz committed Jan 17, 2024
2 parents 20aea2d + 84063b3 commit 8718a74
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:

- name: Build Next.js for E2E tests
run: npm run build
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

- if: github.event_name == 'pull_request'
name: Validate all commits from PR
Expand Down
2 changes: 1 addition & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Config } from 'jest';
import nextJest from 'next/jest';

const createJestConfig = nextJest({
// Provide the path to your Next.js app to load next.config.js and .env files in your test environment
// Provide the path to your Next.js app to load `next.config.js` and `.env` files in your test environment
dir: './',
});

Expand Down
2 changes: 1 addition & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default withSentryConfig(
silent: true,
// FIXME: Add your Sentry organization and project names
org: 'nextjs-boilerplate-org',
project: 'nextjs-boilerplate-project',
project: 'nextjs-boilerplate',
},
{
// For all available options, see:
Expand Down
2 changes: 1 addition & 1 deletion src/components/DeleteGuestbookEntry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const DeleteGuestbookEntry = (props: { id: number }) => {
}}
>
<svg
className="h-6 w-6 stroke-current"
className="size-6 stroke-current"
fill="none"
strokeLinecap="round"
strokeLinejoin="round"
Expand Down
2 changes: 1 addition & 1 deletion src/components/EditableGuestbookEntry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const EditableGuestbookEntry = (props: {
}}
>
<svg
className="h-6 w-6 stroke-current"
className="size-6 stroke-current"
fill="none"
strokeLinecap="round"
strokeLinejoin="round"
Expand Down

0 comments on commit 8718a74

Please sign in to comment.