Turning motors on using buttons

switch (buttonPressed) {
    case 1:
      
      servo1.writeMicroseconds(1000); // rotate
      delay(950);
      servo1.writeMicroseconds(1500);  // stop
    
     case 2:

Whoops
No break; at the end of each case