Hi
In the original code the MCU only have the interrupt enabled when it is in power mode, so when you remove this you will never detect the IRS from the radio.
Insert the following into your initMCU() function to enabble global interrupt:
// Enable global interrupt
_BIS_SR(GIE);
Now you should be able to remowe the power mode statement and still be able to detect the interrupts.