Vincent Vu

Results 18 comments of Vincent Vu

Hoping we can get this updated; it's getting pretty bad, quite slow in transition.

const sanitizeRecipientId = (input: string): string => { return input.replace(/[^a-zA-Z0-9.]/g, ''); }; const sanitizeAmount = (input: string): string => { return input.replace(/[^0-9.]/g, ''); }; const sanitizeMemo = (input: string): string...

Thanks, glad that's all cleared up, Looks like we'll just to wait for their response. Atleast it wasn't my coding.

Not sure if this will fix the issue; when creating a server or sending a transaction, the SDK returns a Base64 when invoking execute.(client). const newAccountTransaction = await new AccountCreateTransaction()...

> I can't use this tool without signing in to Facebook. What does it say? ``` Response Code Reason | This response code could be due to a robots.txt block....

Was wondering why my Auth flow sudden played up with the same issue, Can confirm,

Updated with the docker image. ``` name: usesend-prod services: usesend-db-prod: image: postgres:17-alpine restart: always environment: - POSTGRES_USER=${POSTGRES_USER:?err} - POSTGRES_PASSWORD=${POSTGRES_PASSWORD:?err} - POSTGRES_DB=${POSTGRES_DB:?err} healthcheck: test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"] interval: 10s timeout:...

It pulls the new image, but docker compose is indeed, reusing the older image.

usesend: image: usesend/usesend:latest pull_policy: always restart: always it'll pull the image and redeploy with the image is was on, rather than using the pulled image.

In my build i dropped all these: ``` import { dirname } from 'path'; import { fileURLToPath } from 'url'; import { FlatCompat } from '@eslint/eslintrc'; const __filename = fileURLToPath(import.meta.url);...