See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| import { useCallback, useState } from 'react'; | |
| import { | |
| QueryFunction, | |
| QueryKey, | |
| useQuery, | |
| UseQueryOptions, | |
| UseQueryResult, | |
| } from 'react-query'; | |
| type UseQueryParams = Parameters<typeof useQuery>; |
| import { useState } from "react"; | |
| import { | |
| DropdownMenu, | |
| DropdownMenuCheckboxItem, | |
| DropdownMenuContent, | |
| DropdownMenuLabel, | |
| DropdownMenuSeparator, | |
| DropdownMenuTrigger | |
| } from "../shadcn/ui/dropdown-menu"; | |
| import { Button } from "../shadcn/ui/button"; |