Action Sheet Issue

Hey everyone, I,m developing an app in ionic, in my app i’m used action sheet, in action sheet put some buttons like home, review and others, whenever click on button first time it goes to respective page and action sheet hides, and again open the action sheet and click on same button the action sheet doesn’t hide . Please help to solve.

Thanks in advance…

@nani_madepalli

here is an example of action sheet

Please check my code once

$scope.showActionsheet = function() {
$ionicActionSheet.show({
titleText: ‘More’,
buttons: [
{ text: ‘FAQ’ },
],
cancelText: ‘Cancel’,
cancel: function() {
console.log(‘CANCELLED’);
},
buttonClicked: function(index) {
if(index == 0){
$state.go(‘tab.Faq’);
}
},
destructiveButtonClicked: function() {
console.log(‘DESTRUCT’);
return true;
}
});
};