diff --git a/plugins/plugin-radius/src/components/recipes/RecipeTable.tsx b/plugins/plugin-radius/src/components/recipes/RecipeTable.tsx index a9a1dc7..7a39ecb 100644 --- a/plugins/plugin-radius/src/components/recipes/RecipeTable.tsx +++ b/plugins/plugin-radius/src/components/recipes/RecipeTable.tsx @@ -42,32 +42,31 @@ export const RecipeTable = ({ ]; const filters: TableFilter[] = [ - { - column: 'Name', - type: 'select', - }, - { - column: 'Type', - type: 'multiple-select', - }, - { - column: 'Kind', - type: 'multiple-select', - }, - { - column: 'Template Path', - type: 'multiple-select', - }, - - ]; + { + column: 'Name', + type: 'select', + }, + { + column: 'Type', + type: 'multiple-select', + }, + { + column: 'Kind', + type: 'multiple-select', + }, + { + column: 'Template Path', + type: 'multiple-select', + }, + ]; return ( ); -}; \ No newline at end of file +};