This commit is contained in:
zeppi 2021-10-15 18:07:58 -04:00 committed by jessopb
parent e17e355247
commit d405ff5ffb
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ function ShowPage(props: Props) {
const claimExists = claim !== null && claim !== undefined;
const haventFetchedYet = claim === undefined;
const isMine = claim && claim.is_my_output;
const { contentName, isChannel } = parseURI(uri);
const { contentName, isChannel } = parseURI(uri); // deprecated contentName - use streamName and channelName
const { push } = useHistory();
const isCollection = claim && claim.value_type === 'collection';
const resolvedCollection = collection && collection.id; // not null

View file

@ -69,7 +69,7 @@ let baseConfig = {
},
],
},
// Allows imports for all directories inside '/ui'
// Allows imports for all directories inside '/ui' :)
resolve: {
modules: [UI_ROOT, 'node_modules', __dirname],
extensions: ['.js', '.jsx', '.json', '.scss'],