mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 09:31:20 -04:00
the lift....
This commit is contained in:
@@ -10,6 +10,7 @@ import VipVerificationCard from '../vip/VipVerificationCard.jsx';
|
||||
import VipIdentityCard from '../vip/VipIdentityCard.jsx';
|
||||
import VipPrivateRoverAccessCard from '../vip/VipPrivateRoverAccessCard.jsx';
|
||||
import VipNeatoCard from '../vip/VipNeatoCard.jsx';
|
||||
import VipLiftCard from '../vip/VipLiftCard.jsx';
|
||||
|
||||
export default function VipPanel() {
|
||||
const {
|
||||
@@ -26,6 +27,8 @@ export default function VipPanel() {
|
||||
neatoSendHome,
|
||||
neatoLocate,
|
||||
neatoClearErrors,
|
||||
liftUp,
|
||||
liftDown,
|
||||
} = useSession();
|
||||
const { value: identity, save: saveIdentity } = useSettingsNamespace('identity', { cookieUserId: '' });
|
||||
const { value: profile } = useSettingsNamespace('profile', { nickname: '' });
|
||||
@@ -80,6 +83,12 @@ export default function VipPanel() {
|
||||
onClearErrors={neatoClearErrors}
|
||||
fullWidth
|
||||
/>
|
||||
<VipLiftCard
|
||||
lift={session?.lift || null}
|
||||
onUp={liftUp}
|
||||
onDown={liftDown}
|
||||
fullWidth
|
||||
/>
|
||||
<VipAudioUploadCard
|
||||
ownRoverId={ownRoverId}
|
||||
audioForwardByRover={session?.audioForward || {}}
|
||||
|
||||
Reference in New Issue
Block a user