fix(results): 🐛 Loading rows
This commit is contained in:
@ -76,7 +76,6 @@ export const ChatBlock = ({
|
||||
|
||||
const displayNextStep = (answerContent?: string, isRetry?: boolean) => {
|
||||
const currentStep = [...displayedSteps].pop()
|
||||
console.log(currentStep)
|
||||
if (currentStep) {
|
||||
if (isRetry && stepCanBeRetried(currentStep))
|
||||
return setDisplayedSteps([
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { randomBytes, createCipheriv, createDecipheriv } from 'crypto'
|
||||
|
||||
const algorithm = 'aes-256-gcm'
|
||||
const secretKey = process.env.SECRET
|
||||
const secretKey = process.env.ENCRYPTION_SECRET
|
||||
|
||||
export const encrypt = (
|
||||
data: object
|
||||
|
Reference in New Issue
Block a user