Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dependencies #8131

Merged
merged 4 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/actions/app/global.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jest.mock('react-native-keychain', () => {
};
});

jest.mock('@utils/log', () => ({
logError: jest.fn(),
}));

describe('/app/actions/app/global', () => {
beforeEach(async () => {
await DatabaseManager.init([serverUrl]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ exports[`AttachmentAuthor it matches snapshot when both name and icon are provid
}
>
<ViewManagerAdapter_ExpoImage
containerViewRef={"[React.ref]"}
contentFit="cover"
contentPosition={
{
Expand Down Expand Up @@ -71,6 +72,7 @@ exports[`AttachmentAuthor it matches snapshot when only icon is provided 1`] = `
}
>
<ViewManagerAdapter_ExpoImage
containerViewRef={"[React.ref]"}
contentFit="cover"
contentPosition={
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ exports[`AttachmentFooter it matches snapshot when both footer and footer_icon a
}
>
<ViewManagerAdapter_ExpoImage
containerViewRef={"[React.ref]"}
contentFit="cover"
contentPosition={
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ exports[`ThreadOverview should match snapshot when post is not saved and 0 repli
exclusive={true}
handlerTag={1}
handlerType="NativeViewGestureHandler"
innerRef={null}
onGestureEvent={[Function]}
onGestureHandlerEvent={[Function]}
onGestureHandlerStateChange={[Function]}
Expand Down Expand Up @@ -90,6 +91,7 @@ exports[`ThreadOverview should match snapshot when post is not saved and 0 repli
exclusive={true}
handlerTag={2}
handlerType="NativeViewGestureHandler"
innerRef={null}
onGestureEvent={[Function]}
onGestureHandlerEvent={[Function]}
onGestureHandlerStateChange={[Function]}
Expand Down Expand Up @@ -174,6 +176,7 @@ exports[`ThreadOverview should match snapshot when post is saved and has replies
exclusive={true}
handlerTag={3}
handlerType="NativeViewGestureHandler"
innerRef={null}
onGestureEvent={[Function]}
onGestureHandlerEvent={[Function]}
onGestureHandlerStateChange={[Function]}
Expand Down Expand Up @@ -206,6 +209,7 @@ exports[`ThreadOverview should match snapshot when post is saved and has replies
exclusive={true}
handlerTag={4}
handlerType="NativeViewGestureHandler"
innerRef={null}
onGestureEvent={[Function]}
onGestureHandlerEvent={[Function]}
onGestureHandlerStateChange={[Function]}
Expand Down
4 changes: 4 additions & 0 deletions app/components/user_list/__snapshots__/index.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,7 @@ exports[`components/channel_list_row should show results and tutorial 1`] = `
<ViewManagerAdapter_ExpoImage
backgroundColor={4294967295}
borderRadius={12}
containerViewRef={"[React.ref]"}
contentFit="cover"
contentPosition={
{
Expand Down Expand Up @@ -763,6 +764,7 @@ exports[`components/channel_list_row should show results no tutorial 1`] = `
<ViewManagerAdapter_ExpoImage
backgroundColor={4294967295}
borderRadius={12}
containerViewRef={"[React.ref]"}
contentFit="cover"
contentPosition={
{
Expand Down Expand Up @@ -1120,6 +1122,7 @@ exports[`components/channel_list_row should show results no tutorial 2 users 1`]
<ViewManagerAdapter_ExpoImage
backgroundColor={4294967295}
borderRadius={12}
containerViewRef={"[React.ref]"}
contentFit="cover"
contentPosition={
{
Expand Down Expand Up @@ -1338,6 +1341,7 @@ exports[`components/channel_list_row should show results no tutorial 2 users 1`]
<ViewManagerAdapter_ExpoImage
backgroundColor={4294967295}
borderRadius={12}
containerViewRef={"[React.ref]"}
contentFit="cover"
contentPosition={
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@ const PrivateChannelIllustration = ({theme}: Props) => (
/>
<Mask
id='a'

// @ts-expect-error style not intrinsic
style={{
maskType: 'alpha',
}}
Expand Down Expand Up @@ -132,8 +130,6 @@ const PrivateChannelIllustration = ({theme}: Props) => (
/>
<Mask
id='b'

// @ts-expect-error style not intrinsic
style={{
maskType: 'alpha',
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ const PublicChannelIllustration = ({theme}: Props) => (
/>
<Mask
id='a'

// @ts-expect-error style not intrinsic
style={{
maskType: 'alpha',
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ const TownSquareIllustration = ({theme}: Props) => (
/>
<Mask
id='a'

// @ts-expect-error style not intrinsic
style={{
maskType: 'alpha',
}}
Expand Down Expand Up @@ -117,8 +115,6 @@ const TownSquareIllustration = ({theme}: Props) => (
/>
<Mask
id='b'

// @ts-expect-error style not intrinsic
style={{
maskType: 'alpha',
}}
Expand Down Expand Up @@ -159,8 +155,6 @@ const TownSquareIllustration = ({theme}: Props) => (
/>
<Mask
id='c'

// @ts-expect-error style not intrinsic
style={{
maskType: 'alpha',
}}
Expand Down
4 changes: 0 additions & 4 deletions app/screens/forgot_password/inbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ const Inbox = (props: SvgProps) => (
x={71}
y={91}
maskUnits='userSpaceOnUse'

// @ts-expect-error style not defined
style={{
maskType: 'alpha',
}}
Expand Down Expand Up @@ -144,8 +142,6 @@ const Inbox = (props: SvgProps) => (
x={56}
y={52}
maskUnits='userSpaceOnUse'

// @ts-expect-error style not defined
style={{
maskType: 'alpha',
}}
Expand Down
Loading
Loading