refactor: Update import path for getMissingKeys

The import path for the getMissingKeys function was updated from
'../actions' to '@/app/actions' to align with the project's import
conventions and improve code clarity.
This commit is contained in:
rudrodip 2024-04-29 19:12:17 +06:00
parent 79ee9e4577
commit 045ad9035a

View file

@ -3,7 +3,7 @@ import { Chat } from '@/components/chat'
import { AI } from '@/lib/chat/actions' import { AI } from '@/lib/chat/actions'
import { auth } from '@/auth' import { auth } from '@/auth'
import { Session } from '@/lib/types' import { Session } from '@/lib/types'
import { getMissingKeys } from '../actions' import { getMissingKeys } from '@/app/actions'
export const metadata = { export const metadata = {
title: 'Next.js AI Chatbot' title: 'Next.js AI Chatbot'