Skip to content

Commit

Permalink
Rename propTypes file to camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Apr 9, 2021
1 parent 23aca9c commit 9710c05
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/DisplayNames/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import _ from 'underscore';
import React, {Fragment, PureComponent} from 'react';
import {Text, View} from 'react-native';
import {propTypes, defaultProps} from './DisplayNamesPropTypes';
import {propTypes, defaultProps} from './displayNamesPropTypes';
import styles from '../../styles/styles';
import Tooltip from '../Tooltip';

Expand Down
2 changes: 1 addition & 1 deletion src/components/DisplayNames/index.native.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import {Text} from 'react-native';
import {propTypes, defaultProps} from './DisplayNamesPropTypes';
import {propTypes, defaultProps} from './displayNamesPropTypes';

// As we don't have to show tooltips of the Native platform so we simply render the full display names list.
const DisplayNames = ({
Expand Down

0 comments on commit 9710c05

Please sign in to comment.