Skip to content

Commit

Permalink
removed hardcoded data
Browse files Browse the repository at this point in the history
  • Loading branch information
saiphanindra1010 committed Oct 1, 2024
1 parent 0ee2437 commit fb17ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Playground/Playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function Playground() {
<div className="border rounded-lg p-4">
<h2 className="text-xl font-semibold mb-4">Recent Commands</h2>
<ul className="space-y-2 border">
{['SELECT * FROM users', 'INSERT INTO products', 'UPDATE orders SET status = "shipped"'].map((cmd, index) => (
{[''].map((cmd, index) => (
<li key={index} className=" border p-2 rounded">
{cmd}
</li>
Expand Down

0 comments on commit fb17ca6

Please sign in to comment.