feat: sample data

This commit is contained in:
2025-04-02 17:32:52 +00:00
parent 393eaea2f4
commit 75132503c0
2 changed files with 98 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ type BaseRequestParams = Partial<{
const getBaseRequest = ({ path, body, method }: BaseRequestParams): Request => {
return new Request(`http://localhost:3040/${path}`, {
headers: { userId: "fcc22dbb-7792-4595-be8e-d0439e13990a" },
headers: { userId: "1db09f34-b155-4bf2-b606-dda25365fc89" },
body,
method,
});