Bluesky app fork with some witchin' additions 💫

readd whatever "flatten" is so going to github doesnt crash

+3 -3
+3 -3
src/components/Dialog/index.web.tsx
··· 16 16 import {logger} from '#/logger' 17 17 import {useA11y} from '#/state/a11y' 18 18 import {useDialogStateControlContext} from '#/state/dialogs' 19 - import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' 19 + import {atoms as a, flatten, useBreakpoints, useTheme, web} from '#/alf' 20 20 import {Button, ButtonIcon} from '#/components/Button' 21 21 import {Context} from '#/components/Dialog/context' 22 22 import { ··· 180 180 onClick={stopPropagation} 181 181 onStartShouldSetResponder={_ => true} 182 182 onTouchEnd={stopPropagation} 183 - style={[ 183 + style={flatten([ 184 184 a.relative, 185 185 a.rounded_md, 186 186 a.w_full, ··· 195 195 }, 196 196 !reduceMotionEnabled && a.zoom_fade_in, 197 197 style, 198 - ]}> 198 + ])}> 199 199 <DismissableLayer.DismissableLayer 200 200 onInteractOutside={preventDefault} 201 201 onFocusOutside={preventDefault}