We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45cd30f commit 6c06dd4Copy full SHA for 6c06dd4
src/plugins/ramps/infinite/infiniteApi.ts
@@ -541,7 +541,7 @@ export const makeInfiniteApi = (config: InfiniteApiConfig): InfiniteApi => {
541
// Dummy response
542
const dummyResponse: InfiniteTosResponse = {
543
tosUrl: `https://api.infinite.dev/v1/headless/tos?session=dummy_${Date.now()}&customerId=${customerId}`,
544
- status: 'pending',
+ status: Math.random() > 0.5 ? 'accepted' : 'pending',
545
acceptedAt: null,
546
customerName: 'Test User',
547
email: 'test@example.com'
0 commit comments