warn if a value in select no longer exists

This commit is contained in:
Kendall Garner 2025-05-18 10:59:45 -07:00
parent f068d6e4b8
commit cf74625bfc
No known key found for this signature in database
GPG key ID: 9355F387FE765C94
6 changed files with 93 additions and 11 deletions

View file

@ -5,7 +5,7 @@ import type {
import { Select as MantineSelect, MultiSelect as MantineMultiSelect } from '@mantine/core';
import styled from 'styled-components';
interface SelectProps extends MantineSelectProps {
export interface SelectProps extends MantineSelectProps {
maxWidth?: number | string;
width?: number | string;
}