SmartView TriggerAction

You have an issue here:

// This
    <button/beta-button {{action 'fetchRecords'}}>
        Refresh data
    </button>
// Should be
    <Button::BetaButton
      @type="primary"
      @action={{@fetchRecords}}
   >
        Refresh data
    </Button::BetaButton>

This I think should fix your issue :slight_smile: