Skip to content

Commit a86d6a8

Browse files
committed
Merge branch 'master' of github.com:wix/react-native-ui-lib into infra/Docs_D-E_components
2 parents 32907b2 + ce02465 commit a86d6a8

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

generatedTypes/src/components/chipsInput/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ declare type OwnProps = ChipsInputProps & BaseComponentInjectedProps;
100100
* @description: Chips input component
101101
* @modifiers: Typography
102102
* @gif: https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/ChipsInput/ChipsInput.gif?raw=true
103-
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ChipsInputScreen.js
103+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ChipsInputScreen.tsx
104104
* @extends: TextField
105105
*/
106106
declare class ChipsInput extends Component<OwnProps, State> {

src/components/scrollBar/ScrollBarGradient.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ const ScrollBarGradient = ({
8484
left: left ? gradientMargins : undefined
8585
}}
8686
>
87+
{/* @ts-expect-error */}
8788
<AnimatedImage
8889
source={gradientImage}
8990
style={{

src/helpers/AvatarHelper.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export function patchGravatarUrl(gravatarUrl: string) {
6969
const {query} = url;
7070
query.d = '404';
7171
delete query.default;
72+
// @ts-expect-error
7273
url.set('query', query);
7374
return url.toString();
7475
}

0 commit comments

Comments
 (0)