Skip to content

Commit

Permalink
Fix code issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianAppDev committed Jun 14, 2024
1 parent c9fd855 commit 3ff3667
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/components/rooms/room/Room.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import React from 'react';
import {
Stack, Button, Col, Row, Dropdown,
Stack, Button, Col, Row,
} from 'react-bootstrap';
import { Link, useParams } from 'react-router-dom';
import { HomeIcon, ShareIcon } from '@heroicons/react/24/outline';
Expand Down
7 changes: 7 additions & 0 deletions app/javascript/components/rooms/room/forms/ShareRoomForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,11 @@ ShareRoomForm.propTypes = {
online: PropTypes.bool,
participants: PropTypes.number,
}).isRequired,

roomSettings: PropTypes.shape({
data: PropTypes.shape({
glModeratorAccessCode: PropTypes.string,
glViewerAccessCode: PropTypes.string,
}).isRequired,
}).isRequired,
};

0 comments on commit 3ff3667

Please sign in to comment.