You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

actions.native.js 219B

12345678910
  1. /**
  2. * Shows a dialog prompting users to upgrade, if requested feature is disabled.
  3. *
  4. * @returns {Function}
  5. */
  6. export function maybeShowPremiumFeatureDialog() {
  7. return function() {
  8. return false;
  9. };
  10. }