Deepak Bhagat

Results 16 issues of Deepak Bhagat

When an admin grants the "post-readonly" permission while a user is in a read-only room, the composer stays disabled until they navigate away or restart the app. The UI doesn't...

I fixed a type-safety issue in **RoomContext** by replacing the `any` type used for the `room` property with a proper union type called **`TRoomContextRoom`**. This brings back full TypeScript checking...

I updated the `ServerAvatar` component in WorkspaceView to finally add a proper loading state and error handling. Earlier, the avatar area would just stay blank while the image was loading,...

### Describe the Bug The file `app/lib/methods/helpers/helpers.ts` has `@ts-nocheck` at the top, which disables TypeScript checking for the entire file. All 8 exported functions lack proper TypeScript type annotations, reducing...

🐛 bug

### Describe the Bug The function slugifyLikeString in app/lib/database/utils.ts (around line 14) contains a bug where the replace() result is not assigned or returned. Because of this, the string sanitization...

🐛 bug

## Proposed changes Fixed a bug in `slugifyLikeString` function where special character sanitization was not working due to dead code. ## Issue(s) Fixes #6782 ## How to test or reproduce...