From 58567d37b3de05b5ba04e00dc88477b843e10591 Mon Sep 17 00:00:00 2001 From: Carissa Knipe Date: Tue, 9 Jul 2024 08:20:32 -0700 Subject: [PATCH] refactor: Remove unused type (#1737) --- dev-client/src/model/soilId/soilIdTypes.ts | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 dev-client/src/model/soilId/soilIdTypes.ts diff --git a/dev-client/src/model/soilId/soilIdTypes.ts b/dev-client/src/model/soilId/soilIdTypes.ts deleted file mode 100644 index dff69d558..000000000 --- a/dev-client/src/model/soilId/soilIdTypes.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright © 2024 Technology Matters - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published - * by the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see https://www.gnu.org/licenses/. - */ - -import { - SoilIdResults, - SoilIdStatus, -} from 'terraso-client-shared/soilId/soilIdSlice'; - -// TODO: This could be moved to client-shared -export type SoilIdData = SoilIdResults & {status: SoilIdStatus};