Skip to content

Commit 2656f85

Browse files
committed
chore: Fix typo in receipt
1 parent 54e5fe4 commit 2656f85

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

apps/dashboard/src/actions/ai/chat/tools/get-invoces.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ type Args = {
1212

1313
export function getInvoicesTool({ aiState, teamId }: Args) {
1414
return {
15-
description: "Find reciept or invoice",
15+
description: "Find receipt or invoice",
1616
parameters: z.object({
17-
name: z.string().describe("The name of the invoice or reciept"),
17+
name: z.string().describe("The name of the invoice or receipt"),
1818
}),
1919
generate: async (args) => {
2020
const { name, amount } = args;

apps/dashboard/src/actions/ai/chat/tools/get-transactions.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function getTransactionsTool({ aiState }: Args) {
2929
attachments: z
3030
.enum(["include", "exclude"])
3131
.describe(
32-
"Filter transactions if they are completed or not, if they have reciepts or attachments",
32+
"Filter transactions if they are completed or not, if they have receipts or attachments",
3333
)
3434
.optional(),
3535
limit: z.number().describe("Limit the number of transactions").optional(),

apps/dashboard/src/app/api/webhook/inbox/match/route.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export async function POST(req: Request) {
4949
.single()
5050
.throwOnError();
5151

52-
// NOTE: All inbox reciepts and invoices amount are
52+
// NOTE: All inbox receipts and invoices amount are
5353
// saved with positive values while transactions have signed values
5454
const { data: inboxData } = await supabase
5555
.from("inbox")

apps/docs/local-development.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The `apps` directory contains the code for:
4848

4949
The `packages` directory contains the code for:
5050

51-
- `documents`: OCR for reciepts.
51+
- `documents`: OCR for receipts.
5252
- `events`: Analytics library.
5353
- `import`: CSV-importer.
5454
- `inbox`: Inbox utils.

packages/jobs/src/inbox/match.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ client.defineJob({
2828
supabase,
2929
},
3030
run: async (payload, io) => {
31-
// NOTE: All inbox reciepts and invoices amount are
31+
// NOTE: All inbox receipts and invoices amount are
3232
// saved with positive values while transactions have signed values
3333
const { data: transactionData } = await io.supabase.client
3434
.from("transactions")

0 commit comments

Comments
 (0)