I am trying to use useService in js but it always return Service not available
class Spreadsheet extends AbstractFieldOwl {
setup() {
super.setup(...arguments);
this.action = useService("action")
this.state = useState({ name:"Test"})
}
}is there any way I could call actions ?