Skip to content

Commit

Permalink
remove capitalise
Browse files Browse the repository at this point in the history
  • Loading branch information
hardingjam committed Feb 19, 2025
1 parent 6ddd551 commit 502d527
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ describe('transactionStore', () => {
const indexingPromise = awaitNewOrderIndexing(mockSubgraphUrl, mockTxHash, mockNetwork);

expect(get(transactionStore).status).toBe(TransactionStatus.PENDING_SUBGRAPH);
expect(get(transactionStore).message).toBe('Waiting for new Order to be indexed...');
expect(get(transactionStore).message).toBe('Waiting for new order to be indexed...');

await vi.advanceTimersByTime(10000);
await indexingPromise;
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/src/lib/stores/transactionStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const transactionStore = () => {
update((state) => ({
...state,
status: TransactionStatus.PENDING_SUBGRAPH,
message: 'Waiting for new Order to be indexed...'
message: 'Waiting for new order to be indexed...'
}));

let attempts = 0;
Expand Down

0 comments on commit 502d527

Please sign in to comment.