Skip to content

Commit

Permalink
Remove description from toolkit schema (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-grace authored Mar 26, 2024
1 parent 78f324c commit 511fbdc
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/schemas/toolkit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {slugField} from './slugs'
* "Reference" for the document to be used.
*
* field: Entries - Used to link to toolkit topic(s) to serve as items in the
* "Reference tab".
* "Reference" tab.
*/
const toolkit = defineType({
title: 'Toolkit',
Expand All @@ -33,14 +33,6 @@ const toolkit = defineType({
validation: (Rule) => Rule.required(),
}),
slugField(),
defineField({
title: 'Description',
name: 'description',
type: 'string',
description: 'Short description displayed below the toolkit name',
translatable: true,
validation: (Rule) => Rule.required(),
}),
defineField({
title: 'Entries',
name: 'contents',
Expand Down

0 comments on commit 511fbdc

Please sign in to comment.