Skip to content

Commit

Permalink
remove scientific section (#151)
Browse files Browse the repository at this point in the history
add to normal schedule
fix program changes
  • Loading branch information
soroushowji-tomtom authored Oct 28, 2023
1 parent b42bb73 commit c666c82
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 187 deletions.
4 changes: 3 additions & 1 deletion src/components/ProgramTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ export const BlueCell = ({ title }) => (
</td>
)

export const EmptyCell = () => <td className="border border-gray-200"></td>
export const EmptyCell = ({ rowSpan = 1 }) => (
<td rowSpan={rowSpan} className="border border-gray-200"></td>
)

export const TableHeader = ({ day, date, hasScientificTrack = false }) => (
<thead>
Expand Down
Loading

0 comments on commit c666c82

Please sign in to comment.