@griddo/ax 1.75.169 → 1.75.170

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@griddo/ax",
3
3
  "description": "Griddo Author Experience",
4
- "version": "1.75.169",
4
+ "version": "1.75.170",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -234,5 +234,5 @@
234
234
  "publishConfig": {
235
235
  "access": "public"
236
236
  },
237
- "gitHead": "db5f28a576b8bae9193121620f538db55f6e2278"
237
+ "gitHead": "768d80c749b9c63c22bacd2c553ad0e434108ac3"
238
238
  }
@@ -12,12 +12,11 @@ import { socialActions } from "@ax/containers/Settings/Social";
12
12
  import * as S from "./style";
13
13
 
14
14
  const Social = (props: IProps): JSX.Element => {
15
- const { isSaving, navItems, currentNavItem, socialInfo, saveSocial, getSocial, setHistoryPush } =
16
- props;
15
+ const { isSaving, navItems, currentNavItem, socialInfo, saveSocial, getSocial, setHistoryPush } = props;
17
16
 
18
17
  const title = "Social";
19
18
 
20
- const socialFields: { name: string, title: string }[] = [
19
+ const socialFields: { name: string; title: string }[] = [
21
20
  { name: "instagram", title: "Instagram URL" },
22
21
  { name: "linkedIn", title: "LinkedIn URL" },
23
22
  { name: "facebook", title: "Facebook URL" },
@@ -27,6 +26,7 @@ const Social = (props: IProps): JSX.Element => {
27
26
  { name: "tiktok", title: "Tiktok URL" },
28
27
  { name: "snapchat", title: "Snapchat URL" },
29
28
  { name: "newsletter", title: "Newsletter URL" },
29
+ { name: "podcast", title: "Podcast URL" },
30
30
  ];
31
31
 
32
32
  const [socialForm, setSocialForm] = useState<Record<string, string>>({});