Skip to content

Commit

Permalink
FIx hard coded item values
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Mar 12, 2021
1 parent bfbb895 commit 8faa519
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ItemView/ItemView.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ import ItemHeaderView from "../ItemHeaderView";
import { useItem, useItemSetter } from "../ItemProvider";
import { useToken } from "../AuthProvider/";

export default function ItemView() {
let { queue, number } = {queue: "test", number: 1};
export default function ItemView({ queue, number }) {
// Set stateful variables
const [activeTab, setActiveTab] = useState('Conversation');
const [isLoading, setIsLoading] = useState(false);
Expand Down

0 comments on commit 8faa519

Please sign in to comment.