Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: range selection via chart #2867

Merged
merged 6 commits into from
Feb 5, 2025
Merged

feat: range selection via chart #2867

merged 6 commits into from
Feb 5, 2025

Conversation

ogzhanolguncu
Copy link
Contributor

@ogzhanolguncu ogzhanolguncu commented Feb 4, 2025

What does this PR do?

Fixes # (issue)

If there is not an issue for this, please create one first. This is used to tracking purposes and also helps use understand why this PR exists

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • Chore (refactoring code, technical debt, workflow improvements)
  • Enhancement (small improvements)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How should this be tested?

  • Test A
  • Test B

Checklist

Required

  • Filled out the "How to test" section in this PR
  • Read Contributing Guide
  • Self-reviewed my own code
  • Commented on my code in hard-to-understand areas
  • Ran pnpm build
  • Ran pnpm fmt
  • Checked for warnings, there are none
  • Removed all console.logs
  • Merged the latest changes from main onto my branch with git pull origin main
  • My changes don't cause any responsiveness issues

Appreciated

  • If a UI change was made: Added a screen recording or screenshots to this PR
  • Updated the Unkey Docs if changes were necessary

Summary by CodeRabbit

  • New Features
    • Enhanced logs charts with interactive time range selection that visually highlights the chosen period.
    • Added a utility to convert dates to local time for more accurate time-based displays.
  • Refactor
    • Streamlined the logs filtering interface by simplifying path retrieval and removing redundant scrolling behavior.
    • Improved query filtering with more specific time constraints and refined error messages.
  • Style
    • Updated chart color definitions by removing old chart colors and introducing a new selection highlight for better visual clarity.

Copy link

changeset-bot bot commented Feb 4, 2025

⚠️ No Changeset found

Latest commit: 278921a

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

vercel bot commented Feb 4, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
dashboard ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 5, 2025 1:34pm
engineering ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 5, 2025 1:34pm
play ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 5, 2025 1:34pm
www ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 5, 2025 1:34pm

Copy link
Contributor

coderabbitai bot commented Feb 4, 2025

📝 Walkthrough

Walkthrough

The changes enhance the interactivity and data handling of the dashboard logs. The LogsChart component now supports time-range selection via added mouse event handlers and state management. A new utility function is provided to convert dates to local time. In addition, the logs filtering mechanism has been updated; both the component and its corresponding query now accept a currentDate parameter, with improved error handling and time filtering in the query. Finally, chart-related styling has been revised by removing several color properties and adding a new selection color.

Changes

File(s) Summary of Changes
apps/dashboard/app/(app)/logs/components/charts/index.tsx Added new state (selection) and mouse event handlers (handleMouseDown, handleMouseMove, handleMouseUp) for time-range selection; integrated useFilters hook; defined new Selection type; added a ReferenceArea for visual feedback.
apps/dashboard/app/(app)/logs/components/charts/utils/convert-date-to-local.ts Introduced a new utility function convertDateToLocal that converts a given date/timestamp to local time using timezone offset adjustments via the date-fns library.
apps/dashboard/app/(app)/logs/components/controls/components/logs-filters/components/paths-filter.tsx,
apps/dashboard/lib/trpc/routers/logs/query-distinct-paths.ts
Updated logs filtering by passing a currentDate parameter to the query; simplified path retrieval logic by removing scroll-tracking logic in the filter component; enhanced error handling and integrated time filtering in the query with calculated fromDate.
apps/dashboard/styles/tailwind/tailwind.css Revised chart styling by removing legacy chart color properties (--chart-1 to --chart-5 and --cartesian-grid-stroke) and introducing a new custom property --chart-selection for both light and dark themes.

Sequence Diagram(s)

sequenceDiagram
    participant U as User
    participant LC as LogsChart Component
    participant F as Filter State
    U->>LC: MouseDown (start selection)
    LC->>LC: Set selection.start based on mouse position
    U->>LC: MouseMove (drag to select)
    LC->>LC: Update selection.end dynamically
    U->>LC: MouseUp (complete selection)
    LC->>F: Update filters with selected time range
    LC->>LC: Reset selection state after processing
Loading

Suggested labels

🕹️ oss.gg, :joystick: 150 points, Needs Approval

Suggested reviewers

  • mcstepp
  • chronark
  • perkinsjr

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

github-actions bot commented Feb 4, 2025

Thank you for following the naming conventions for pull request titles! 🙏

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (5)
apps/dashboard/lib/trpc/routers/logs/query-distinct-paths.ts (2)

7-8: Consider validating input range for currentDate.

Currently, only the type of currentDate is being validated (i.e., it is a number). If needed, consider adding additional constraints (e.g., must be positive, must not exceed current time, etc.) to guard against malformed or extreme values.


15-21: Log the original error for debugging purposes.

While throwing a TRPCError with a custom message is a good practice, storing or logging the _err can help diagnose issues when investigating support tickets or logs. Ensure that the error details are captured somewhere, possibly in a logging or monitoring system.

apps/dashboard/app/(app)/logs/components/charts/index.tsx (3)

37-42: Consider using more specific types for Selection.

The Selection type could be more specific to improve type safety:

  • start and end could be more strictly typed based on the actual values they can hold
  • Consider using number | null instead of optional properties for timestamps
 type Selection = {
-  start: string | number;
-  end: string | number;
-  startTimestamp?: number;
-  endTimestamp?: number;
+  start: number;
+  end: number;
+  startTimestamp: number | null;
+  endTimestamp: number | null;
 };

51-51: Improve selection state management.

The selection state initialization and reset could be improved:

  • Consider using null for initial/reset state instead of empty strings
  • This would better represent the absence of a selection
-  const [selection, setSelection] = useState<Selection>({ start: "", end: "" });
+  const [selection, setSelection] = useState<Selection | null>(null);

   // In reset
-    setSelection({
-      start: "",
-      end: "",
-      startTimestamp: undefined,
-      endTimestamp: undefined,
-    });
+    setSelection(null);

Also applies to: 118-124


89-124: Simplify time range sorting logic.

The sort operation could be simplified using destructuring:

-      const [start, end] = [selection.startTimestamp, selection.endTimestamp].sort((a, b) => a - b);
+      const [start, end] = [selection.startTimestamp, selection.endTimestamp].sort();

Also, consider extracting the filter update logic to a separate function for better readability and reusability.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2277a95 and 5e0b678.

📒 Files selected for processing (5)
  • apps/dashboard/app/(app)/logs/components/charts/index.tsx (5 hunks)
  • apps/dashboard/app/(app)/logs/components/charts/utils/convert-date-to-local.ts (1 hunks)
  • apps/dashboard/app/(app)/logs/components/controls/components/logs-filters/components/paths-filter.tsx (2 hunks)
  • apps/dashboard/lib/trpc/routers/logs/query-distinct-paths.ts (1 hunks)
  • apps/dashboard/styles/tailwind/tailwind.css (2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (17)
  • GitHub Check: Test Packages / Test ./packages/rbac
  • GitHub Check: Test Packages / Test ./packages/nextjs
  • GitHub Check: Test Packages / Test ./packages/hono
  • GitHub Check: Test Packages / Test ./packages/cache
  • GitHub Check: Test Packages / Test ./packages/api
  • GitHub Check: Test Packages / Test ./internal/clickhouse
  • GitHub Check: Test Packages / Test ./internal/resend
  • GitHub Check: Test Packages / Test ./internal/keys
  • GitHub Check: Test Packages / Test ./internal/id
  • GitHub Check: Test Packages / Test ./internal/hash
  • GitHub Check: Test Packages / Test ./internal/encryption
  • GitHub Check: Test Packages / Test ./internal/billing
  • GitHub Check: Test API / API Test Local
  • GitHub Check: Test Agent Local / test_agent_local
  • GitHub Check: Build / Build
  • GitHub Check: autofix
  • GitHub Check: Analyze (javascript-typescript)
🔇 Additional comments (10)
apps/dashboard/lib/trpc/routers/logs/query-distinct-paths.ts (3)

23-28: Good use of NOT_FOUND TRPCError.

The error handling pattern for a missing workspace is clear and consistent, improving readability and debugging for consumers of this API.


30-30: Evaluate the 12-hour offset logic.

Subtracting 12 hours from currentDate may be correct for the current requirement, but ensure it's not inadvertently omitting data or missing edge cases (e.g., different user time zones or shifts at midnight). Clarify if 12 hours is a hard-coded standard or subject to future parameterization.


47-48: Ensure empty result handling meets business logic.

Returning an empty array is a safe fallback. Confirm this is aligned with consumers' expectations to gracefully handle cases where no paths are found.

apps/dashboard/app/(app)/logs/components/charts/utils/convert-date-to-local.ts (1)

3-8: Confirm local time conversion requirements.

The function offsets the provided date by the current timezone offset. This may be sufficient for simple local conversions, but might not account for DST transitions in all locales. Verify this aligns with user expectations and ensure thorough testing in different time zones.

apps/dashboard/app/(app)/logs/components/controls/components/logs-filters/components/paths-filter.tsx (5)

6-6: Check necessity of useCallback and useMemo.

You’ve introduced useMemo(() => Date.now(), []); this ensures dateNow remains constant across renders. Verify that the desired behavior is truly a once-on-mount snapshot, rather than a continuously updated timestamp.


10-12: Passing currentDate to the query is well-structured.

Fetching paths based on a specific timestamp fosters clarity and consistency. This aligns with the server-side logic in queryDistinctPaths.


14-22: Neat transformation of paths data.

Selecting and mapping the array to a standardized shape keeps the component clean and decoupled from the raw API response.


24-24: Well-defined query options block.

Providing a custom select option is a neat way to shape your data without extra transformations in downstream logic.


84-84: Smooth scroll behavior.

The max-h-64 overflow-auto ensures the scroll is contained. Removing the old scroll event-tracking logic appears to simplify the component. Double-check if any previous "scroll to bottom" auto-load or pagination logic is still needed.

apps/dashboard/styles/tailwind/tailwind.css (1)

5-5: LGTM!

The new --chart-selection CSS variable is well-implemented:

  • Appropriate colors chosen for both light and dark themes
  • Follows existing naming conventions
  • Maintains consistency with the existing theme system

Also applies to: 40-40

Copy link

pullflow-com bot commented Feb 4, 2025

From Oguzhan Olguncu ‣ Give this a try folks

Copy link
Collaborator

chronark commented Feb 4, 2025

the highlight is sooo subtle, I missed it and was about to ask why it’s not there

we definitely need to increase contrast, right now it’s not really usable

Copy link

pullflow-com bot commented Feb 4, 2025

From Oguzhan Olguncu ‣ yeah didn't wanna spend time on it without discussing

Copy link

pullflow-com bot commented Feb 4, 2025

From Oguzhan Olguncu ‣ let's discuss on general

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (3)
apps/dashboard/app/(app)/logs/components/charts/index.tsx (3)

37-42: Consider using more specific types for Selection.

The Selection type could be improved by using more specific types for timestamps.

 type Selection = {
-  start: string | number;
-  end: string | number;
-  startTimestamp?: number;
-  endTimestamp?: number;
+  start: string | number | null;
+  end: string | number | null;
+  startTimestamp?: number | null;
+  endTimestamp?: number | null;
 };

51-51: Use null for initial selection state.

For better type safety and clarity, consider using null instead of empty strings for the initial selection state.

-  const [selection, setSelection] = useState<Selection>({ start: "", end: "" });
+  const [selection, setSelection] = useState<Selection>({ start: null, end: null });

70-79: Optimize handleMouseMove with debouncing.

The handleMouseMove event handler could trigger frequently during mouse movement. Consider debouncing to improve performance.

+import { debounce } from "lodash";
+
 const handleMouseMove = (e: any) => {
   if (selection.start) {
     const timestamp = e.activePayload?.[0]?.payload?.originalTimestamp;
     setSelection((prev) => ({
       ...prev,
       end: e.activeLabel,
       startTimestamp: timestamp,
     }));
   }
 };
+
+const debouncedHandleMouseMove = debounce(handleMouseMove, 16);  // ~60fps
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 5e0b678 and a4600ea.

📒 Files selected for processing (1)
  • apps/dashboard/app/(app)/logs/components/charts/index.tsx (6 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (17)
  • GitHub Check: Test Packages / Test ./packages/rbac
  • GitHub Check: Test Packages / Test ./packages/nextjs
  • GitHub Check: Test Packages / Test ./packages/hono
  • GitHub Check: Test Packages / Test ./packages/cache
  • GitHub Check: Test Packages / Test ./packages/api
  • GitHub Check: Test Packages / Test ./internal/clickhouse
  • GitHub Check: Test Packages / Test ./internal/resend
  • GitHub Check: Test Packages / Test ./internal/keys
  • GitHub Check: Test Packages / Test ./internal/id
  • GitHub Check: Test Packages / Test ./internal/hash
  • GitHub Check: Test Packages / Test ./internal/encryption
  • GitHub Check: Test Packages / Test ./internal/billing
  • GitHub Check: Test API / API Test Local
  • GitHub Check: Test Agent Local / test_agent_local
  • GitHub Check: Build / Build
  • GitHub Check: autofix
  • GitHub Check: Analyze (javascript-typescript)

apps/dashboard/app/(app)/logs/components/charts/index.tsx Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

♻️ Duplicate comments (1)
apps/dashboard/app/(app)/logs/components/charts/index.tsx (1)

60-79: ⚠️ Potential issue

Add proper TypeScript types for event handlers.

The mouse event handlers use any type which reduces type safety. Consider using proper types from the recharts library.

Additionally, add error handling for missing payload in handleMouseMove:

 const handleMouseMove = (e: any) => {
   if (selection.start) {
+    if (!e.activePayload?.[0]?.payload?.originalTimestamp) return;
     const timestamp = e.activePayload?.[0]?.payload?.originalTimestamp;
     setSelection((prev) => ({
🧹 Nitpick comments (1)
apps/dashboard/app/(app)/logs/components/charts/index.tsx (1)

81-116: Extract filter field names to constants.

The hardcoded filter field names could be moved to constants for better maintainability:

+const TIME_FILTER_FIELDS = ["startTime", "endTime", "since"] as const;
+
 const handleMouseUp = () => {
   if (selection.start && selection.end) {
     const activeFilters = filters.filter(
-      (f) => !["startTime", "endTime", "since"].includes(f.field),
+      (f) => !TIME_FILTER_FIELDS.includes(f.field),
     );
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a4600ea and 92d039f.

📒 Files selected for processing (2)
  • apps/dashboard/app/(app)/logs/components/charts/index.tsx (6 hunks)
  • apps/dashboard/styles/tailwind/tailwind.css (2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (13)
  • GitHub Check: Test Packages / Test ./packages/rbac
  • GitHub Check: Test Packages / Test ./packages/nextjs
  • GitHub Check: Test Packages / Test ./packages/hono
  • GitHub Check: Test Packages / Test ./packages/cache
  • GitHub Check: Test Packages / Test ./packages/api
  • GitHub Check: Test Packages / Test ./internal/clickhouse
  • GitHub Check: Test Packages / Test ./internal/resend
  • GitHub Check: Test Packages / Test ./internal/id
  • GitHub Check: Build / Build
  • GitHub Check: Test Agent Local / test_agent_local
  • GitHub Check: Test API / API Test Local
  • GitHub Check: autofix
  • GitHub Check: Analyze (javascript-typescript)
🔇 Additional comments (2)
apps/dashboard/app/(app)/logs/components/charts/index.tsx (2)

37-42: LGTM! Well-structured type definition.

The Selection type clearly defines the structure for managing chart selection state with appropriate types for timestamps.


214-222: Increase highlight contrast for better visibility.

Based on user feedback in the PR, the current highlight is too subtle to be noticed effectively.

apps/dashboard/styles/tailwind/tailwind.css Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 92d039f and 278921a.

📒 Files selected for processing (2)
  • apps/dashboard/app/(app)/logs/components/charts/index.tsx (6 hunks)
  • apps/dashboard/styles/tailwind/tailwind.css (2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (17)
  • GitHub Check: Test Packages / Test ./packages/rbac
  • GitHub Check: Test Packages / Test ./packages/nextjs
  • GitHub Check: Test Packages / Test ./packages/hono
  • GitHub Check: Test Packages / Test ./packages/cache
  • GitHub Check: Test Packages / Test ./packages/api
  • GitHub Check: Test Packages / Test ./internal/clickhouse
  • GitHub Check: Test Packages / Test ./internal/resend
  • GitHub Check: Test Packages / Test ./internal/keys
  • GitHub Check: Test Packages / Test ./internal/id
  • GitHub Check: Test Packages / Test ./internal/hash
  • GitHub Check: Test Packages / Test ./internal/encryption
  • GitHub Check: Test Agent Local / test_agent_local
  • GitHub Check: Test Packages / Test ./internal/billing
  • GitHub Check: Build / Build
  • GitHub Check: Test API / API Test Local
  • GitHub Check: autofix
  • GitHub Check: Analyze (javascript-typescript)
🔇 Additional comments (4)
apps/dashboard/app/(app)/logs/components/charts/index.tsx (4)

9-11: LGTM! Well-structured type definition and imports.

The Selection type is well-defined with clear properties, and the imports are appropriate for the new feature.

Also applies to: 37-42


81-116: LGTM! Well-implemented filter update logic.

The function correctly:

  • Filters out existing time-related filters
  • Ensures start time is less than end time
  • Resets selection state after updating filters

214-222: 🛠️ Refactor suggestion

Enhance selection visibility.

Based on user feedback, the current highlight is too subtle to be noticed effectively.

  <ReferenceArea
    isAnimationActive
    x1={Math.min(Number(selection.start), Number(selection.end))}
    x2={Math.max(Number(selection.start), Number(selection.end))}
-   fill="hsl(var(--chart-selection))"
+   fill="hsl(var(--accent-5))"
+   fillOpacity={0.5}
+   stroke="hsl(var(--accent-7))"
+   strokeWidth={1}
    radius={[4, 4, 0, 0]}
  />

Likely invalid or redundant comment.


60-79: 🛠️ Refactor suggestion

Add proper TypeScript types and error handling.

The mouse event handlers need proper typing and error handling:

- const handleMouseDown = (e: any) => {
+ const handleMouseDown = (e: CategoricalChartState) => {
+   if (!e.activePayload?.[0]?.payload?.originalTimestamp) return;
    const timestamp = e.activePayload?.[0]?.payload?.originalTimestamp;
    setSelection({
      start: e.activeLabel,
      end: e.activeLabel,
      startTimestamp: timestamp,
      endTimestamp: timestamp,
    });
  };

- const handleMouseMove = (e: any) => {
+ const handleMouseMove = (e: CategoricalChartState) => {
    if (selection.start) {
+     if (!e.activePayload?.[0]?.payload?.originalTimestamp) return;
      const timestamp = e.activePayload?.[0]?.payload?.originalTimestamp;
      setSelection((prev) => ({
        ...prev,
        end: e.activeLabel,
        startTimestamp: timestamp,
      }));
    }
  };

Likely invalid or redundant comment.

apps/dashboard/styles/tailwind/tailwind.css Show resolved Hide resolved
@chronark chronark added this pull request to the merge queue Feb 5, 2025
Merged via the queue into main with commit 3785965 Feb 5, 2025
28 checks passed
@chronark chronark deleted the rang-selection-via-chart branch February 5, 2025 14:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants