Skip to content

Commit dd3340d

Browse files
committed
Format all files
1 parent 478c4b6 commit dd3340d

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

docs/api/createListenerMiddleware.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ To fix this, the middleware provides types for defining "pre-typed" versions of
488488
import { createListenerMiddleware, addListener } from '@reduxjs/toolkit'
489489
import type { RootState, AppDispatch } from './store'
490490

491-
declare type ExtraArgument = {foo: string};
491+
declare type ExtraArgument = { foo: string }
492492

493493
export const listenerMiddleware = createListenerMiddleware()
494494

examples/type-portability/bundler/src/features/time/TimeList.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,13 @@ export const intervalOptions = [
7878
{ label: '1m', value: 60_000 },
7979
]
8080

81-
export const TimeDisplay = ({ offset, label }: { offset: string; label: string }) => {
81+
export const TimeDisplay = ({
82+
offset,
83+
label,
84+
}: {
85+
offset: string
86+
label: string
87+
}) => {
8288
const globalPolling = useAppSelector(selectGlobalPollingEnabled)
8389
const { enabled: timesPolling } = useAppSelector((state) =>
8490
selectPollingConfigByApp(state, 'times'),

examples/type-portability/nodenext-esm/src/features/time/TimeList.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,13 @@ export const intervalOptions = [
7878
{ label: '1m', value: 60_000 },
7979
]
8080

81-
export const TimeDisplay = ({ offset, label }: { offset: string; label: string }) => {
81+
export const TimeDisplay = ({
82+
offset,
83+
label,
84+
}: {
85+
offset: string
86+
label: string
87+
}) => {
8288
const globalPolling = useAppSelector(selectGlobalPollingEnabled)
8389
const { enabled: timesPolling } = useAppSelector((state) =>
8490
selectPollingConfigByApp(state, 'times'),

0 commit comments

Comments
 (0)