From 959a1cf21c0526da1c1d970b9f04f1599e03f756 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ali=20Emir=20=C5=9Een?= Date: Fri, 19 Jul 2024 22:13:14 +0300 Subject: [PATCH] fix(refine-nextjs): fix category id form field text --- refine-nextjs/plugins/_base/extend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refine-nextjs/plugins/_base/extend.js b/refine-nextjs/plugins/_base/extend.js index 54ea1db8..19ceda26 100644 --- a/refine-nextjs/plugins/_base/extend.js +++ b/refine-nextjs/plugins/_base/extend.js @@ -183,7 +183,7 @@ module.exports = { } else if (dataProvider === "data-provider-supabase") { base.blogPostCategoryIdFormField = `"categoryId"`; } else if (dataProvider === "data-provider-appwrite") { - base.blogPostCategoryIdFormField = "category"; + base.blogPostCategoryIdFormField = `"category"`; } else { if (uiFramework === "mui" || isHeadless) { base.blogPostCategoryIdFormField = `"category.id"`;