Rename Flipper trace to Flipper export.

Summary: Rename visual references from Flipper trace to Flipper export.

Reviewed By: passy

Differential Revision: D21408566

fbshipit-source-id: 1021fec095f2f2f3e5394e7ea2f7d49fee186050
This commit is contained in:
João Vieira
2020-05-07 04:02:41 -07:00
committed by Facebook GitHub Bot
parent 77ca337011
commit a2d7297bbb
5 changed files with 13 additions and 13 deletions

View File

@@ -26,13 +26,13 @@ export function sendDidMountMessage(webview: WebviewTag) {
*
* @param webview
* @param text
* This helper function is for appending flipper trace in the questions input text field.
* It also updates the Flipper trace state in the form which makes it pass the validation.
* This helper function is for appending flipper export in the questions input text field.
* It also updates the Flipper export state in the form which makes it pass the validation.
* One should use it only for the pages backed by NTUsersFormContainer.react.js
*/
export function sendFlipperTrace(webview: WebviewTag, text: string) {
export function sendFlipperExport(webview: WebviewTag, text: string) {
webview.send('hostMessage', {
type: 'flipperTrace',
type: 'flipperExport',
payload: text,
});
}