diff --git a/.github/workflows/qodana_code_quality.yml b/.github/workflows/qodana_code_quality.yml index c237f82..bd8ecda 100644 --- a/.github/workflows/qodana_code_quality.yml +++ b/.github/workflows/qodana_code_quality.yml @@ -5,7 +5,7 @@ on: push: branches: # Specify your branches here - main # The 'main' branch - - 'releases/*' # The release branches + - "releases/*" # The release branches jobs: qodana: @@ -17,12 +17,12 @@ jobs: steps: - uses: actions/checkout@v3 with: - ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit - fetch-depth: 0 # a full history is required for pull request analysis - - name: 'Qodana Scan' + ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit + fetch-depth: 0 # a full history is required for pull request analysis + - name: "Qodana Scan" uses: JetBrains/qodana-action@v2024.1 with: pr-mode: false env: QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1776540167 }} - QODANA_ENDPOINT: 'https://qodana.cloud' \ No newline at end of file + QODANA_ENDPOINT: "https://qodana.cloud" diff --git a/database/schema/users.ts b/database/schema/users.ts index 8ad77f5..5353379 100644 --- a/database/schema/users.ts +++ b/database/schema/users.ts @@ -21,6 +21,7 @@ export const userTable = table("users", { .notNull() .defaultNow(), verifiedAt: timestamp("verified_at"), + checkoutAt: timestamp("checkout_at"), onboardedAt: timestamp("onboarded_at"), createdAt: timestamp("created_at").notNull().defaultNow(), updatedAt: timestamp("updated_at"), diff --git a/qodana.yaml b/qodana.yaml index e0bfc4f..e980428 100644 --- a/qodana.yaml +++ b/qodana.yaml @@ -3,4 +3,4 @@ linter: jetbrains/qodana-js:2024.1 profile: name: qodana.recommended include: - - name: CheckDependencyLicenses \ No newline at end of file + - name: CheckDependencyLicenses diff --git a/src/app/app/_components/account_page/panels/activities/NewActivityForm.tsx b/src/app/app/_components/account_page/panels/activities/NewActivityForm.tsx index 96e0d10..9df483a 100644 --- a/src/app/app/_components/account_page/panels/activities/NewActivityForm.tsx +++ b/src/app/app/_components/account_page/panels/activities/NewActivityForm.tsx @@ -138,6 +138,7 @@ export function NewActivityForm({ {...field} placeholder={`Enter title for ${activityType}`} className="h-8" + autoFocus={activityType === "call"} /> @@ -198,6 +199,7 @@ export function NewActivityForm({