Skip to content

Commit a28519a

Browse files
committed
fis lint
1 parent 94fcb59 commit a28519a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/@react-spectrum/s2/stories/TableView.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1398,7 +1398,7 @@ export const Test = {
13981398
};
13991399

14001400
function SWTable() {
1401-
const [film, setFilm] = useState(undefined);
1401+
const [film, setFilm] = useState<undefined | string>(undefined);
14021402

14031403
interface Item {
14041404
id: string,

packages/@react-spectrum/table/stories/Table.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2271,7 +2271,7 @@ export const Test = {
22712271
};
22722272

22732273
function SWTable() {
2274-
const [film, setFilm] = useState(undefined);
2274+
const [film, setFilm] = useState<undefined | string>(undefined);
22752275

22762276
interface Item {
22772277
id: string,

0 commit comments

Comments
 (0)