Skip to content

Commit

Permalink
fix(refine-nextjs): fix category id form field text
Browse files Browse the repository at this point in the history
  • Loading branch information
aliemir committed Jul 19, 2024
1 parent 9d7ab01 commit 959a1cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refine-nextjs/plugins/_base/extend.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"`;
Expand Down

0 comments on commit 959a1cf

Please sign in to comment.