Skip to content

Commit

Permalink
Fix VRT
Browse files Browse the repository at this point in the history
  • Loading branch information
MatissJanis committed Dec 12, 2023
1 parent 6afc149 commit 82941a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up environment
uses: ./.github/actions/setup
- name: Typecheck
run: yarn typecheck
uses: andoshin11/[email protected]
test:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-client/e2e/accounts.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test.describe('Accounts', () => {
});

const transaction = accountPage.getNthTransaction(0);
await expect(transaction.payee).toHaveText('Starting Balance xxxx');
await expect(transaction.payee).toHaveText('Starting Balance');
await expect(transaction.notes).toHaveText('');
await expect(transaction.category).toHaveText('Starting Balances');
await expect(transaction.debit).toHaveText('');
Expand Down
2 changes: 1 addition & 1 deletion packages/loot-core/src/shared/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export function fastSetMerge<T>(set1: Set<T>, set2: Set<T>) {
return finalSet;
}

export function titleFirst(str: string) {
export function titleFirst(str: number) {
return str[0].toUpperCase() + str.slice(1);
}

Expand Down

0 comments on commit 82941a1

Please sign in to comment.