diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx
index 904b6011..ba6ca29d 100644
--- a/src/components/molecules/RecordingsTable.tsx
+++ b/src/components/molecules/RecordingsTable.tsx
@@ -200,7 +200,7 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl
fetchRecordings();
}
})
- }} sx={{ '&:hover': { color: '#1976d2', backgroundColor: 'transparent' } }}>
+ }}>
@@ -239,7 +239,7 @@ const InterpretButton = ({ handleInterpret }: InterpretButtonProps) => {
{
handleInterpret();
}}
- sx={{ '&:hover': { color: '#1976d2', backgroundColor: 'transparent' } }}>
+ >
)
@@ -255,7 +255,7 @@ const ScheduleButton = ({ handleSchedule }: ScheduleButtonProps) => {
{
handleSchedule();
}}
- sx={{ '&:hover': { color: '#1976d2', backgroundColor: 'transparent' } }}>
+ >
)
@@ -270,7 +270,7 @@ const IntegrateButton = ({ handleIntegrate }: IntegrateButtonProps) => {
{
handleIntegrate();
}}
- sx={{ '&:hover': { color: '#1976d2', backgroundColor: 'transparent' } }}>
+ >
)