minor: format code

This commit is contained in:
2026-02-11 09:53:54 -05:00
parent b0c5e4c20f
commit 431433a3a0
5 changed files with 233 additions and 239 deletions

View File

@@ -72,9 +72,7 @@
"description": "", "description": "",
"show_in_rest": 0, "show_in_rest": 0,
"display_title": "", "display_title": "",
"acfe_autosync": [ "acfe_autosync": ["json"],
"json"
],
"acfe_form": 0, "acfe_form": 0,
"show_in_graphql": 1, "show_in_graphql": 1,
"graphql_field_name": "GroupAbstractSocial", "graphql_field_name": "GroupAbstractSocial",

View File

@@ -63,9 +63,7 @@
"id": "" "id": ""
}, },
"graphql_field_name": "social", "graphql_field_name": "social",
"clone": [ "clone": ["group_abstract_social"],
"group_abstract_social"
],
"display": "seamless", "display": "seamless",
"layout": "block", "layout": "block",
"prefix_label": 0, "prefix_label": 0,
@@ -144,9 +142,7 @@
"description": "", "description": "",
"show_in_rest": 0, "show_in_rest": 0,
"display_title": "", "display_title": "",
"acfe_autosync": [ "acfe_autosync": ["json"],
"json"
],
"acfe_form": 0, "acfe_form": 0,
"show_in_graphql": 1, "show_in_graphql": 1,
"graphql_field_name": "GroupSiteOptions", "graphql_field_name": "GroupSiteOptions",

View File

@@ -4,5 +4,5 @@ export const useGeneralSettings = () =>
{}, {},
{ {
transform: ({ generalSettings }) => generalSettings, transform: ({ generalSettings }) => generalSettings,
} },
); );

View File

@@ -4,5 +4,5 @@ export const useSiteOptions = () =>
{}, {},
{ {
transform: ({ siteOptions }) => siteOptions?.groupSiteOptions, transform: ({ siteOptions }) => siteOptions?.groupSiteOptions,
} },
); );