From 1f7def6add98af6d6fa730d91132f16eb6f0ca97 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 14 Nov 2018 12:20:31 -0500 Subject: [PATCH] update copy - soon TM --- src/renderer/component/fileDetails/view.jsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/renderer/component/fileDetails/view.jsx b/src/renderer/component/fileDetails/view.jsx index e5947de40..1e17d8b8f 100644 --- a/src/renderer/component/fileDetails/view.jsx +++ b/src/renderer/component/fileDetails/view.jsx @@ -1,6 +1,7 @@ // @flow import type { Claim, Metadata } from 'types/claim'; import type { FileInfo } from 'types/file_info'; +import type { Node } from 'react'; import React, { Fragment, PureComponent } from 'react'; import { Lbryio } from 'lbryinc'; import MarkdownPreview from 'component/common/markdown-preview'; @@ -15,7 +16,7 @@ type Props = { openFolder: string => void, contentType: string, clickCommentButton: () => void, - showSnackBar: string => void, + showSnackBar: Node => void, hasClickedComment: boolean, user: ?any, }; @@ -31,7 +32,12 @@ class FileDetails extends PureComponent { clickCommentButton(); Lbryio.call('user_tag', 'edit', { add: 'comments-waitlist' }); - showSnackBar(__('Thanks! Comments are coming soon(ish).')); + showSnackBar( + + {__('Thanks! Comments are coming soon')} + TM + + ); } render() {