sync main with release after debugging email verification #371
@@ -2,6 +2,7 @@ import { createUserInsecure } from 'src/services/users/users.js'
|
||||
import { db } from 'src/lib/db'
|
||||
import { sentryWrapper } from 'src/lib/sentry'
|
||||
import { enforceAlphaNumeric, generateUniqueString } from 'src/services/helpers'
|
||||
// import 'graphql-tag'
|
||||
|
|
||||
|
||||
const unWrappedHandler = async (req, _context) => {
|
||||
const body = JSON.parse(req.body)
|
||||
|
||||
@@ -20,7 +20,7 @@ export const foreignKeyReplacement = (input) => {
|
||||
}
|
||||
|
||||
export const enforceAlphaNumeric = (string) =>
|
||||
string.replace(/([^a-zA-Z\d_:])/g, '-')
|
||||
(string || '').replace(/([^a-zA-Z\d_:])/g, '-')
|
||||
|
||||
export const generateUniqueString = async (
|
||||
seed,
|
||||
|
||||
@@ -83,7 +83,7 @@ export const updatePart = async ({ id, input }) => {
|
||||
where: { id },
|
||||
})
|
||||
if (imageToDestroy) {
|
||||
console.log(`image destroyed, publicId: ${imageToDestroy}, partId: ${id}`)
|
||||
// console.log(`image destroyed, publicId: ${imageToDestroy}, partId: ${id}`)
|
||||
// destroy after the db has been updated
|
||||
destroyImage({ publicId: imageToDestroy })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user
and explicitly requiring this dependency for my signup function
From: https://community.redwoodjs.com/t/redwood-v0-32/2118/7
Ah - you said the magic word trifecta of Netlify + Functions + Dependency and I wonder if you encountered this: https://www.netlify.com/blog/2021/04/02/modern-faster-netlify-functions/
Perhaps the way Netlify is bundling now wasn't finding that dependency?
And v.0.32 was released on May 14 so ... "week of May 17" does coincide.
Thus
make graphql-tag and explicit dependencyfixing the issue fits.Thusmake graphql-tag and explicit dependencyfixing the issue fits.