Skip to content

Commit

Permalink
update brokenlink variables
Browse files Browse the repository at this point in the history
  • Loading branch information
anemne committed Sep 17, 2024
1 parent ee36cd8 commit c131e5f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions studio/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import compensations from "./schemas/documents/compensations";
import pageBuilder from "./schemas/documents/pageBuilder";
import posts from "./schemas/documents/post";
import brandAssets from "./schemas/documents/siteSettings/brandAssets";
import brokenLinks from "./schemas/documents/siteSettings/brokenLinks";
import brokenLink from "./schemas/documents/siteSettings/brokenLink";
import navigationManager from "./schemas/documents/siteSettings/navigationManager";
import socialMediaLinks from "./schemas/documents/siteSettings/socialMediaProfiles";
import supportedLanguages from "./schemas/documents/siteSettings/supportedLanguages";
Expand All @@ -35,7 +35,7 @@ export const schema: { types: SchemaTypeDefinition[] } = {
categories,
legalDocument,
compensations,
brokenLinks,
brokenLink,
benefitsByLocation,
companyLocation,
supportedLanguages,
Expand Down
2 changes: 1 addition & 1 deletion studio/schemas/deskStructure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { legalDocumentID } from "./documents/admin/legalDocuments";
import { compensationsId } from "./documents/compensations";
import { pageBuilderID } from "./documents/pageBuilder";
import { brandAssetsID } from "./documents/siteSettings/brandAssets";
import { brokenLinkID } from "./documents/siteSettings/brokenLinks";
import { brokenLinkID } from "./documents/siteSettings/brokenLink";
import { soMeLinksID } from "./documents/siteSettings/socialMediaProfiles";
import { supportedLanguagesID } from "./documents/siteSettings/supportedLanguages";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const requiredIfDestinationType = (

export const brokenLinkID = "brokenLink";

const brokenLinks = defineType({
name: brokenLinksID,
const brokenLink = defineType({
name: brokenLinkID,
title: "Broken Links",
type: "document",
fields: [
Expand Down Expand Up @@ -137,4 +137,4 @@ const brokenLinks = defineType({
},
});

export default brokenLinks;
export default brokenLink;

0 comments on commit c131e5f

Please sign in to comment.