Skip to content

Commit

Permalink
Gate table view behind feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
hkhalil-akamai committed Feb 13, 2024
1 parent 5563ee8 commit 624b774
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ export const SelectLinodePanel = (props: Props) => {
/>
)}
<StyledBox>
{(matchesMdUp ? renderTable : renderCards)({
{(matchesMdUp && flags.linodeCloneUIChanges
? renderTable
: renderCards)({
disabled: disabled ?? false,
handlePowerOff: (linodeID) =>
setPowerOffLinode({ linodeID }),
Expand Down

0 comments on commit 624b774

Please sign in to comment.