From ef14b5423ce883e06627802344a3c3808fdc7465 Mon Sep 17 00:00:00 2001 From: Henrik Larsson Date: Mon, 14 Aug 2023 12:12:18 +0200 Subject: [PATCH] Removed unused objects --- lib/sanity/schemas/objects/placeholderString.ts | 10 ---------- lib/sanity/schemas/objects/proxyString.ts | 11 ----------- 2 files changed, 21 deletions(-) delete mode 100644 lib/sanity/schemas/objects/placeholderString.ts delete mode 100644 lib/sanity/schemas/objects/proxyString.ts 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, - }, -})