diff --git a/lib/sanity/schemas/objects/placeholderString.ts b/lib/sanity/schemas/objects/placeholderString.ts deleted file mode 100644 index c8c2ff209..000000000 --- a/lib/sanity/schemas/objects/placeholderString.ts +++ /dev/null @@ -1,10 +0,0 @@ -import PlaceholderStringInput from '../../components/inputs/PlaceholderString' - -export default { - name: 'placeholderString', - title: 'Title', - type: 'string', - components: { - input: PlaceholderStringInput, - }, -} diff --git a/lib/sanity/schemas/objects/proxyString.ts b/lib/sanity/schemas/objects/proxyString.ts deleted file mode 100644 index f5e839e17..000000000 --- a/lib/sanity/schemas/objects/proxyString.ts +++ /dev/null @@ -1,11 +0,0 @@ -import {defineField} from 'sanity' -import ProxyStringInput from '../../components/inputs/ProxyString' - -export default defineField({ - name: 'proxyString', - title: 'Title', - type: 'string', - components: { - input: ProxyStringInput, - }, -})