Weekly GitHub Report for Ui - 2024-07-22 21:38:40
Weekly GitHub Report for Ui
Thank you for subscribing to our weekly newsletter! Each week, we deliver a comprehensive summary of your GitHub project's latest activity right to your inbox, including an overview of your project's issues, pull requests, contributors, and commit activity.
I. Issues
1.1 Open Issues
Open Issues This Week: 25
Summarized Issues:
- Accessibility Issues in Sheet Component: This issue highlights a bug in the Sheet component where it fails to provide necessary accessibility features for screen reader users. Specifically, it requires a
DialogTitle
and aDescription
oraria-describedby
attribute for theDialogContent
to ensure proper functionality. This is crucial for making the component accessible to all users.
- Search Functionality for Modal and Dialog Components: This issue requests the addition of a feature where searching for "Modal" should also display the "Dialog" component. This is to assist new users who might search for "Modal" and find no results. It aims to improve the user experience by making the search more intuitive.
- Support for Multilogue Languages: This issue proposes adding the
dir="auto"
attribute to specific input and textarea components. This is to support writing multilogue languages, such as a mixture of Arabic and English text. It aims to enhance the usability of the components for multilingual users.
- Performance Improvements on Chart Demo Page: This issue highlights the need for performance improvements on the chart demo page of Shadcn/ui. Rendering 65 charts simultaneously causes excessive main thread tasks, resulting in choppy and unsmooth chart rendering. It suggests using the 'IntersectionObserver' API for dynamic loading of charts to mitigate this problem.
- Angular Compatibility: This issue requests the addition of Angular compatibility to the project. It aims to expand the usability of the project to Angular developers. This would make the project more versatile and accessible to a broader audience.
- Type Error in Carousel Component: This issue is about a type error encountered when using the autoplay plugin in a carousel component. The
AutoplayType
is not assignable to the expectedCreatePluginType
due to incompatible type definitions. This needs to be resolved to ensure the carousel component functions correctly.
- Drawer Component Scrollbar Bug: This issue describes a bug where the Drawer component hides the scrollbar and causes the page to resize. This leads to layout inconsistencies, particularly when the Drawer is opened and closed. It needs to be fixed to maintain a consistent user interface.
- Line Spinner Bar Feature Request: This issue is a feature request for the shadcn UI project, asking for the development of a line spinner bar for loading animations. It is similar to the material line spinner and would be used in various projects. This feature would enhance the visual feedback during loading states.
- Checkbox Component Movement Bug: This issue describes a bug where the checkbox component moves up and down when clicked if it is used without a surrounding div with a flex class. It suggests adding the 'flex' class directly to the CheckboxPrimitive.Root component to fix the problem. This would ensure the checkbox remains stable during interactions.
- Stacked Charts Rendering Issue: This issue reports a bug where the shadcn stacked charts are not rendering correctly. It affects the 'chart' and 'recharts' components, as evidenced by a provided screenshot. This needs to be addressed to ensure accurate data visualization.
- CommandItem Component Disabled State Bug: This issue reports a bug where the
CommandItem
component remains disabled even when thedata-disabled
attribute is set to false. This prevents the item from being selectable in the team selector feature. It needs to be fixed to ensure proper functionality.
- Form Submission State Bug with Toast.promise(): This issue describes a bug where the
form.formState.isSubmitting
state in a form created usingreact-hook-form
remainsfalse
when usingtoast.promise()
from the Shadcn Sonner library. This causes form components that should be disabled during submission to remain enabled. It needs to be resolved to ensure correct form behavior.
- npx shadcn-ui init Command Bug: This issue describes a bug in the
npx shadcn-ui init
command for a Vite React app. Theindex.css
file is created in the root folder instead of thesrc
folder due to the installer not trimming spaces from the user-input path forglobals.css
. This needs to be fixed to ensure proper file placement.
- Submenu Option for NavigationMenu Component: This issue requests the addition of a submenu option to the
NavigationMenu
component. It is similar to the one available in Radix UI and aims to enhance its functionality. This would provide more navigation options for users.
- Documentation Issues: This issue reports a missing closing
</Command>
tag in the Combobox usage section of the documentation on the Shadcn UI website. Another issue is about correcting a typo in thedisplayName
property of theMenubarShortcut
component, which is currently incorrectly set asdisplayname
. These documentation errors need to be corrected for clarity.
- Calendar Component Bug with react-day-picker: This issue describes a bug where the release of react-day-picker version 9.0.0 disrupts the functionality and appearance of the Calendar component. A suggested temporary fix is downgrading to version 8.x. This needs to be addressed to ensure the Calendar component works correctly.
- CLI Custom Tailwind Prefix Bug: This issue describes a bug where the CLI does not apply a custom Tailwind prefix to the indicator section of the chart component. This results in inconsistent class names. It needs to be fixed to ensure consistent styling.
- Select Component Ref Prop Request: This issue requests the addition of a
ref
prop to the Select component in the ShadCN UI library. This would enhance the component's functionality by allowing more control over its behavior. It is detailed in the provided documentation link.
- New Calendar Component Feature Request: This issue is about requesting a new calendar component for planning. It allows users to add, interact with, and filter data easily while maintaining the shadcn look and feel. It affects the Button, Card, and shadcn Table components.
- Next.js 15 Canary Build Bug: This issue describes a bug encountered when building the shadcn-ui project on Next.js 15 canary. It is specifically related to unused TypeScript variables in the chart component, which causes the build to fail. This needs to be resolved to ensure successful builds.
- CommandItem Component Error in NextJS Project: This issue describes a bug where the CommandItem component in a NextJS project causes an error when used within a combobox for selecting Brazilian states. Replacing CommandItem with a div resolves the issue. This needs to be fixed to ensure proper component functionality.
- Datepicker Popup Positioning Bug: This issue describes a bug in a JSP application's datepicker where the popup closes unexpectedly when navigating to the next month. It reappears misaligned at the top-left corner of the screen on subsequent clicks, with inconsistent positioning during further interactions. This needs to be fixed to ensure correct popup behavior.
- Installation Documentation Update: This issue highlights the need to update the installation documentation for shadcn in a Next.js project. It should include a step instructing developers to
cd
into their project directory before running the CLI command. This would ensure a smoother installation process.
1.2 Top 5 Active Issues:
We consider active issues to be issues that have generated much discussion in the issue's comments.
-
[bug]: Module not found: Error: Can't resolve '@/components/ui .......: This issue is about a bug encountered when using Create React App with TypeScript, where the
react-scripts start
command fails to resolve the module path for@/components/ui
. The problem appears to be related to the configuration of path aliases in thetsconfig.json
file and how Create React App handles these aliases.- The comments discuss various attempts to resolve the issue, including modifying the
tsconfig.json
andtsconfig.app.json
files, using different path configurations, and trying alternative setups like Vite. Eventually, a solution involving the correct setup of path aliases and extending thetsconfig.json
intsconfig.app.json
is found to work, resolving the issue for multiple users. - Number of comments: 47
- The comments discuss various attempts to resolve the issue, including modifying the
-
[Bug]: Command/Combobox TypeError and Unclickable/Disabled items, cmdk breaking change: This issue describes a bug in the Command component introduced after an update on 03/07/2024, which causes items to be unclickable and disabled, and crashes the application if
<CommandItem>
is not enclosed within a<CommandList>
. The error messageTypeError: undefined is not iterable (cannot read property Symbol(Symbol.iterator))
is thrown due to breaking changes in the cmdk library.- The comments discuss the need to enclose
<CommandItem>
within<CommandList>
to avoid crashes, and to replacedata-[disabled]
withdata-[disabled='true']
to fix the disabled items issue. Users also mention pinning the cmdk version to 0.2.1 as a temporary workaround and share various code snippets and solutions to address the problem. - Number of comments: 42
- The comments discuss the need to enclose
-
Failed to fetch styles from registry: This issue is about a user encountering a
FetchError
when trying to installshadcn
using the commandnpx shadcn-ui@latest init
, which fails to fetch styles from the registry due to a network-related error (ECONNRESET
). The error appears to be intermittent and may be related to network configurations or proxy settings.- Multiple users reported similar issues, suggesting it might be a network or proxy problem. Some users resolved it by setting HTTP and HTTPS proxy environment variables in PowerShell, while others fixed it by adding the shadcn certificate to the root certificates or using a VPN. A few users also mentioned that changing network settings or restarting the terminal helped.
- Number of comments: 27
-
Components added to wrong folder from CLI: This issue involves the
shadcn-ui
CLI adding components to an incorrect directory when theadd
command is executed. The expected behavior is for components to be added to thecomponents/ui
directory, but they are instead being placed in a new@/components/ui
directory.- The comments discuss various configurations in
tsconfig.json
andcomponents.json
files, with users sharing their experiences and solutions to correct the path issues. Some users suggest modifying thepaths
intsconfig.json
, while others mention the need to ensure the CLI recognizes these configurations, especially when using frameworks like Vite. - Number of comments: 24
- The comments discuss various configurations in
-
Default value not showing the correct selected value: This issue describes a problem where the default value of a select input does not update correctly when a button changes the state value using
useState
. The user expects the select input to reflect the new state value, but it only updates the displayed value inside a specific class and not the default value of the select input.- The comments discuss similar issues with dynamically generated
SelectItem
components, suggesting solutions like usingvalue
instead ofdefaultValue
, ensuring values are strings, and correct import paths. Some users shared code snippets and external resources, while others confirmed that these solutions worked for them or requested further assistance. - Number of comments: 22
- The comments discuss similar issues with dynamically generated
1.3 Top 5 Quiet Issues:
We consider quiet issues to be issues that have been opened in this project for the longest time. The team should work together to get these issues resolved and closed as soon as possible.
-
COMPONENTS/Command: Backspace bug: This issue pertains to a bug in the Command component where filtered items do not reappear in the Command menu until the input field is entirely cleared. The problem has been open for 362 days and affects the functionality of the Command menu's filtering process.
- Open for 362 days, 00 hours, 39 minutes
-
Components added to wrong folder from CLI: This issue describes a problem where the
shadcn-ui@latest add
command incorrectly adds components to a new directory@/components/ui/
instead of the existingcomponents/ui
directory as specified in thecomponents.json
configuration file. The user expected the components to be added toC:\\dev\\project\\components\\ui\\accordion.tsx
, but they were actually added toC:\\dev\\project\\@\\components\\ui\\accordion.tsx
.- Open for 356 days, 14 hours, 28 minutes
-
How to change the default chevron icon in Accordion to +/- ?: This issue is about seeking guidance on how to replace the default chevron icon in an Accordion component with a plus/minus symbol. The user is requesting instructions or a method to customize the icon used for expanding and collapsing the Accordion sections.
- Open for 350 days, 08 hours, 10 minutes
-
Select with react-hook-form Control: This issue describes a problem with integrating the Select component from the shadcn library with react-hook-form to display and update form values based on data fetched from an API. The user reports that while the form updates correctly for all fields using plain HTML select elements, the Select component from shadcn does not update as expected, and they are seeking guidance on what might be missing in their implementation.
- Open for 341 days, 11 hours, 22 minutes
-
[request] Dedicated FileUpload component: This issue requests the creation of a dedicated
FileUpload
component that includes "drag and drop" functionality, enhancing the currentInput
with typefile
. The user suggests that a customizableFileUpload
component would provide a more comprehensive and user-friendly file uploading experience.- Open for 336 days, 13 hours, 33 minutes
1.4 Closed Issues
Closed Issues This Week: 9
Average Issue Close Time (This Week): 40.18 days
Summarized Issues:
- Autocomplete Combobox Issues: This issue discusses the challenge of creating an "Autocomplete" combobox that dynamically updates its options based on throttled data from an API endpoint. The problem is that the options only refresh upon closing and reopening the combobox, which is not user-friendly. This affects the usability and efficiency of the combobox feature.
- SyntaxError in Command Execution: This issue describes a
SyntaxError: Unexpected token '<'
that occurs when running the commandnpx shadcn-ui@latest add sheet
. The script mistakenly tries to parse an HTML document as JSON, preventing the successful addition of the sheet component. This error disrupts the workflow and needs to be addressed for smooth component addition.
- Chart Display Issues: Multiple issues are reported regarding the display of charts and their elements. One issue is the "View code" button on the charts examples page not displaying the code on desktop browsers. Another issue involves a gray box appearing when hovering over a BarChart, which can be fixed by adjusting the component hierarchy. Additionally, the Theme Customizer's Copy button results in missing color information for chart elements.
- Certificate and Module Addition Issues: This issue describes a problem encountered when attempting to add a new module to a project, resulting in a "self-signed certificate in certificate chain" error. The issue was resolved by a system administrator who granted full access and added the necessary certificate. This highlights the importance of proper certificate management in project setups.
- Hover State and Command Component Issues: This issue reports a bug where the hover states for a command component added to a sidebar div do not function as expected. This affects the user interaction and visual feedback of the command component. Proper hover state functionality is crucial for intuitive user interfaces.
- Repobeats Integration Proposal: This issue proposes adding Repobeats, a tool for embedding contributor analytics, to the project's README.md. The goal is to provide insights into project activity and contributions. This can enhance transparency and engagement within the project community.
- Date Picker Display Issues: This issue describes a bug where the Date Picker component is not displaying correctly due to CSS issues. The problem was resolved by downgrading from react-day-picker version 9.0.0 to 8.10.1. Ensuring compatibility with CSS is essential for proper component rendering.
1.5 Issue Discussion Insights
This section will analyze the tone and sentiment of discussions within this project's open issues within the past week to identify potentially heated exchanges and to maintain a constructive project environment.
Based on our analysis, there are no instances of toxic discussions in the project's open issues from the past week.
II. Pull Requests
2.1 Open Pull Requests
Open Pull Requests This Week: 23
Pull Requests:
- CommandItem and Sheet components: This pull request addresses and resolves issue #4300 related to the CommandItem and Sheet components in the shadcn-ui project.
- Chart labels and null handling: This pull request addresses the issue of chart labels not being displayed correctly when they are not strings, as detailed in issue #4208 on the shadcn-ui/ui GitHub repository. Another pull request ensures that an item, which could be null or undefined, is properly handled in the charts. These changes improve the robustness and accuracy of chart displays.
- Controlled select example: This pull request introduces a controlled select example to the project, which is particularly useful for scenarios where the select component's state is dependent on the URL. The implementation is based on the Radix UI documentation, providing a practical example for developers.
- AccordionTrigger component: This pull request addresses an issue with the
AccordionTrigger
component where using theasChild
prop previously caused an error due to multiple child nodes. It resolves this by ensuring only a single child node is used internally, thereby making the component compatible withasChild
and correctly handling the rotation and display of the chevron.
- Code cleanliness and syntax fixes: Several pull requests aim to enhance code cleanliness and fix syntax errors. These include removing an unused
MoreHorizontal
import, adding a missing closing tag for theCommand
element, and correcting a typo in the Breadcrumb component.
- Documentation fixes: Multiple pull requests address issues in the documentation, such as fixing the Combobox demo by properly closing the
Command
element and correcting the closing tag in the combobox documentation. These changes ensure the documentation is accurate and functional.
- Dropdown and checkbox interactions: This pull request addresses issue #4129 by updating the dropdown functionality to ensure it does not close when users interact with checkboxes. Another pull request resolves issue #4340 by fixing the unintentional movement of checkboxes in the components.
- React v19 preparation: This pull request addresses the elimination of
forwardRef
errors in anticipation of React v19 by refactoring components to useReact.ComponentProps
for automatic typing ofref
. This simplifies component definitions and improves consistency and flexibility.
- Typo fixes: This pull request addresses a typo in the
MenubarShortcut
component by changing thedisplayname
property to the correctdisplayName
, thereby resolving issue #4364.
- Library upgrades: This pull request upgrades the
react-day-picker
library to version 9, addressing potential issues similar to those experienced with the<Command />
component during thecmdk
v1.0 release. It includes notable changes such as renaming some classNames and changingdate-fns
from a peer dependency to a direct dependency.
- Unused imports and null checks: This pull request addresses issues related to unused imports, missing exports, and includes fixes for the Command closing tag and null checks in the documentation. These changes improve code quality and documentation accuracy.
- Combo-box form behavior: This pull request aims to improve the user experience by ensuring that the combo-box form automatically closes when an item is clicked. This change enhances the usability of the combo-box component.
- Whitespace trimming in CLI: This pull request addresses the issue of trimming whitespaces from the configuration and CSS file location input strings entered by the user in the CLI. It utilizes the built-in trim method of the JavaScript String object to ensure clean input handling.
2.2 Closed Pull Requests
Closed Pull Requests This Week: 12
Summarized Pull Requests:
- Documentation Corrections: Several pull requests focused on correcting various documentation issues. These included fixing typos, updating incorrect links, and adding missing elements in the documentation examples. These changes ensure that the documentation is accurate and helpful for users.
- Chart Examples and Issues: Multiple pull requests addressed issues and enhancements related to chart examples. These included removing obstructive chart previews and adding more chart examples to improve the project's usability and functionality.
- Tooltip Examples: A pull request was dedicated to introducing examples of tooltips. This addition helps users understand how to implement and use tooltips within the project.
- Theme Template Fixes: A pull request addressed a typo in the theme template that caused blank color values. This fix ensures that the theme customizer section works correctly when users copy code.
- Precommit Hooks Removal: One pull request involved the removal of precommit hooks from the project. This change likely aimed to streamline the development process by eliminating unnecessary precommit checks.
2.3 Pull Request Discussion Insights
This section will analyze the tone and sentiment of discussions within this project's open pull requests within the past week to identify potentially heated exchanges and to maintain a constructive project environment.
Based on our analysis, there are no instances of toxic discussions in the project's open pull requests from the past week.
III. Commits
3.1 Commits
Commits This Week: 7
Summarized Commits:
- Documentation Updates: The documentation has been improved by adding a previously missing command and correcting an incorrect link on the charts page, ensuring users have accurate and complete information.
- Precommit Hooks Removal: The project has removed precommit hooks, streamlining the development process and addressing issues referenced in pull request #4319.
- Chart Enhancements and Fixes: Multiple commits have introduced new tooltip and chart examples, added theme support on the blocks page, and made various fixes and updates to styles, colors, and navigation for charts. These changes also include downgrading rehype-pretty-code and addressing build registry updates.
- Theme Customization Fixes: A typo in the theme template causing blank color values has been corrected, ensuring the correct value is obtained when using the copy code function in the theme customizer section.
- Chart Preview Bug Fix: The height of a chart in the preview section of the website has been updated to address a bug, improving the visual consistency and user experience on the website.
IV. Contributors
4.1 Contributors
Active Contributors:
We consider an active contributor in this project to be any contributor who has made at least 1 commit, opened at least 1 issue, or created at least 1 pull request in the past month.
Contributor | Commits | Pull Requests | Issues |
---|---|---|---|
GitHub | 23 | 0 | 0 |
shadcn | 1 | 7 | 0 |
manjushsh | 0 | 2 | 1 |
xSenny | 0 | 3 | 0 |
argcast | 0 | 1 | 1 |
Rekl0w | 0 | 2 | 0 |
growupanand | 0 | 1 | 1 |
P-yiush07 | 0 | 1 | 1 |
danewhitfield | 0 | 2 | 0 |
BalduinB | 0 | 1 | 1 |
fraineralex | 0 | 1 | 1 |
afogel | 0 | 1 | 1 |
liruifengv | 0 | 2 | 0 |
danielevans254 | 0 | 2 | 0 |
tonghohin | 0 | 1 | 1 |
spike04 | 0 | 1 | 1 |
pnodet | 0 | 2 | 0 |
harshmangalam | 0 | 1 | 1 |
brionmario | 0 | 1 | 1 |
hiraaziz | 0 | 0 | 2 |
emre-turan | 0 | 1 | 0 |
moeyashi | 0 | 1 | 0 |
aidenlx | 0 | 1 | 0 |
nevsky118 | 0 | 1 | 0 |
ibdul | 0 | 1 | 0 |
DrejT | 0 | 1 | 0 |
Steeve26 | 0 | 1 | 0 |
jinn2u | 0 | 1 | 0 |
wesjune | 0 | 1 | 0 |
Lavdewangan1 | 0 | 1 | 0 |
AliShirzad | 0 | 1 | 0 |
joejemmely | 0 | 1 | 0 |
1000nettles | 0 | 1 | 0 |
bowencool | 0 | 1 | 0 |
Corepex | 0 | 1 | 0 |
rudrodip | 0 | 1 | 0 |
GalindoSVQ | 0 | 1 | 0 |
hchiam | 0 | 1 | 0 |
RustamovRR | 0 | 1 | 0 |
omar2205 | 0 | 1 | 0 |
Abhi-6284 | 0 | 1 | 0 |
mohammadali-yazdani | 0 | 1 | 0 |
1weiho | 0 | 1 | 0 |
Code-Parth | 0 | 1 | 0 |
davidinoa | 0 | 1 | 0 |
Fedox-die-Ente | 0 | 1 | 0 |
OGPowell | 0 | 1 | 0 |
creativoma | 0 | 1 | 0 |
EthanRBrown | 0 | 1 | 0 |
VaniaPopovic | 0 | 1 | 0 |
Unn4m3DD | 0 | 1 | 0 |
Sushants-Git | 0 | 1 | 0 |
alvinscheibe | 0 | 1 | 0 |
jeniabrook | 0 | 1 | 0 |
charl-kruger | 0 | 1 | 0 |
KhachikAstoyan | 0 | 1 | 0 |
wtlin1228 | 0 | 1 | 0 |
yeonsubak | 0 | 1 | 0 |
diogomartino | 0 | 1 | 0 |
xhofe | 0 | 1 | 0 |
mcsdevv | 0 | 1 | 0 |
domudev | 0 | 1 | 0 |
ladunjexa | 0 | 1 | 0 |
dca123 | 0 | 1 | 0 |
qmffkem | 0 | 1 | 0 |
MarkLyck | 0 | 1 | 0 |
u1aryz | 0 | 1 | 0 |
tomecko | 0 | 1 | 0 |
pehleme | 0 | 1 | 0 |
nehalist | 0 | 1 | 0 |
mariehposa | 0 | 1 | 0 |
bringitup | 0 | 1 | 0 |
GIMMI42PIASTRATO | 0 | 1 | 0 |
MathiasGuGu | 0 | 1 | 0 |
aleciavogel | 0 | 1 | 0 |
raphael-papazikas | 0 | 1 | 0 |
AhmedBaset | 0 | 1 | 0 |
mohdabidansari | 0 | 1 | 0 |
captainyufei | 0 | 0 | 1 |
joaopaulomoraes | 0 | 0 | 1 |
luchillo17 | 0 | 0 | 1 |
ChetSocio | 0 | 0 | 1 |
Boby900 | 0 | 0 | 1 |
tegarmonster | 0 | 0 | 1 |
siuming-qiu | 0 | 0 | 1 |
alamenai | 0 | 0 | 1 |
babucarr32 | 0 | 0 | 1 |
DavithCH | 0 | 0 | 1 |
leooism | 0 | 0 | 1 |
Michael-Crowther | 0 | 0 | 1 |
Pieter1821 | 0 | 0 | 1 |
settery | 0 | 0 | 1 |
stefanprobst | 0 | 0 | 1 |
little077 | 0 | 0 | 1 |
kilaniBarhoom | 0 | 0 | 1 |
imran1khan | 0 | 0 | 1 |
dylanzuber-scale3 | 0 | 0 | 1 |
bytechase | 0 | 0 | 1 |
John-Baik | 0 | 0 | 1 |
shisui0711 | 0 | 0 | 1 |
nico188f | 0 | 0 | 1 |
KPI01 | 0 | 0 | 1 |
Shrived00 | 0 | 0 | 1 |
GurbanmyradowSerdar | 0 | 0 | 1 |
fredle09 | 0 | 0 | 1 |
hongvan05 | 0 | 0 | 1 |
javicrg | 0 | 0 | 1 |
ceptoplex | 0 | 0 | 1 |
bbertucc | 0 | 0 | 1 |
Kertrix | 0 | 0 | 1 |
spencerrazor | 0 | 0 | 1 |
jacobhq | 0 | 0 | 1 |
guptaashwanee | 0 | 0 | 1 |
GrahamTheDevRel | 0 | 0 | 1 |
Maqed | 0 | 0 | 1 |
entropos | 0 | 0 | 1 |
Yukiniro | 0 | 0 | 1 |
VeiaG | 0 | 0 | 1 |
OhYello | 0 | 0 | 1 |
zommerberg | 0 | 0 | 1 |
Kazooki123 | 0 | 0 | 1 |
LuziferSenpai | 0 | 0 | 1 |
ronijaat | 0 | 0 | 1 |
RHaughton | 0 | 0 | 1 |
shelwinsunga | 0 | 0 | 1 |
NoumanAMalik | 0 | 0 | 1 |
reza18s | 0 | 0 | 1 |
YerayAlonso | 0 | 0 | 1 |
merlinstardust | 0 | 0 | 1 |
mustafaR35 | 0 | 0 | 1 |
AslamJM | 0 | 0 | 1 |
burakndmr | 0 | 0 | 1 |
cwysong85 | 0 | 0 | 1 |
jiheapark | 0 | 0 | 1 |
regnna | 0 | 0 | 1 |
BrendanC23 | 0 | 0 | 1 |
sidpremkumar | 0 | 0 | 1 |
NatnaelMalike | 0 | 0 | 1 |
myogeshchavan97 | 0 | 0 | 1 |
Redoxahmii | 0 | 0 | 1 |
slaterx | 0 | 0 | 1 |
hashim-rana-hub | 0 | 0 | 1 |
cantemizyurek | 0 | 0 | 1 |
stefandevo | 0 | 0 | 1 |
Novo1999 | 0 | 0 | 1 |
swapnil9898 | 0 | 0 | 1 |
MohamedAli00949 | 0 | 0 | 1 |
Henry-Hong | 0 | 0 | 1 |
pathrom | 0 | 0 | 1 |
eduardojpanzo | 0 | 0 | 1 |
gabriel-mopereira | 0 | 0 | 1 |
mehul-lega | 0 | 0 | 1 |
bekmarc | 0 | 0 | 1 |
Ehlfons | 0 | 0 | 1 |
gilbertzhuo | 0 | 0 | 1 |
bleedingAyush | 0 | 0 | 1 |
JuanPabloDiaz | 0 | 0 | 1 |
james-psi | 0 | 0 | 1 |
myoussef3030 | 0 | 0 | 1 |
Bahnasawy | 0 | 0 | 1 |
OYERA1 | 0 | 0 | 1 |
jizhi0v0 | 0 | 0 | 1 |
gregpr07 | 0 | 0 | 1 |
patriksimms | 0 | 0 | 1 |
V0IDL355 | 0 | 0 | 1 |
BadisKefi | 0 | 0 | 1 |
vincentzhangz | 0 | 0 | 1 |
caioRafael | 0 | 0 | 1 |
josmi-hash | 0 | 0 | 1 |
Haimantika | 0 | 0 | 1 |