PritamP20

Results 5 issues of PritamP20

First pull request, please merge it, thank you

## Summary This PR adds MAVLink 2.0 message signing and authentication support to provide secure communication between the ground control station and flight controller. ## Motivation MAVLink signing is essential...

## Description This PR optimizes the `VideoQualityLabel` component by wrapping the `onClick` handler with `useCallback` to prevent unnecessary function recreations on every render. This follows React best practices and improves...

The `VideoQualityLabel` component in `react/features/video-quality/components/VideoQualityLabel.web.tsx` defines an `onClick` handler inside the component body without memoization. This causes a new function to be created on every render, which can trigger unnecessary...

### What problem are you trying to solve? Currently, both `tsconfig.web.json` and `tsconfig.native.json` have `strictPropertyInitialization` set to `false`, which weakens TypeScript's type checking capabilities. This setting allows class properties to...

feature-request