Skip to content

Replaced outdated twitter icon with X branding#396

Merged
mehul-m-prajapati merged 2 commits into
GitMetricsLab:mainfrom
Shweta2117409:update-twitter-icon-to-x-branding
May 23, 2026
Merged

Replaced outdated twitter icon with X branding#396
mehul-m-prajapati merged 2 commits into
GitMetricsLab:mainfrom
Shweta2117409:update-twitter-icon-to-x-branding

Conversation

@Shweta2117409
Copy link
Copy Markdown
Contributor

@Shweta2117409 Shweta2117409 commented May 22, 2026

Related Issue

  • Closes: #

Description

This PR updates the outdated Twitter bird icon in the footer section with the modern X branding icon to align with the platform's current branding.

Changes Made

  • Replaced FaTwitter icon with FaXTwitter
  • Updated icon imports using react-icons/fa6
  • Maintained existing hover effects and footer styling
  • Improved branding consistency across the UI

How Has This Been Tested?

  • Tested locally using npm run dev
  • Verified X icon renders correctly in the footer
  • Confirmed no UI alignment or styling issues
  • Checked that the application runs without runtime errors

BEFORE CHANGE
Screenshot 2026-05-22 112512

AFTER CHANGE:
Screenshot 2026-05-22 131839

Type of Change

  • Bug fix
  • New feature
  • Code style update
  • Breaking change
  • Documentation update

Summary by CodeRabbit

  • Style
    • Updated Footer social links: X (formerly Twitter) and Discord links are now disabled and non-clickable. Modified GitHub link styling and updated X icon to use newer branding.

Review Change Stack

@netlify
Copy link
Copy Markdown

netlify Bot commented May 22, 2026

Deploy Preview for github-spy failed.

Name Link
🔨 Latest commit 804e86d
🔍 Latest deploy log https://app.netlify.com/projects/github-spy/deploys/6a119af91c89530008aaedc6

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 22, 2026

Warning

Review limit reached

@mehul-m-prajapati, we couldn't start this review because you've used your available PR reviews for now.

Your plan currently allows 1 review/hour. Refill in 29 minutes and 50 seconds.

Your organization has run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After more review capacity refills, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than trial, open-source, and free plans. In all cases, review capacity refills continuously over time.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 57db0e2e-57e1-461a-b664-f4f5574c6ccf

📥 Commits

Reviewing files that changed from the base of the PR and between f8a31c9 and 804e86d.

📒 Files selected for processing (1)
  • src/components/Footer.tsx
📝 Walkthrough

Walkthrough

Footer.tsx updates social icon imports and presentation. FaXTwitter from react-icons/fa6 replaces FaTwitter, while X and Discord social links transition from external URLs to disabled placeholders with prevented navigation and not-allowed cursor styling.

Changes

Footer Social Icon Updates

Layer / File(s) Summary
Icon import refactoring
src/components/Footer.tsx
Icon imports reorganized: FaTwitter removed from react-icons/fa and replaced with FaXTwitter imported from react-icons/fa6.
Social icons section and link behavior
src/components/Footer.tsx
GitHub link styling updated, X and Discord anchors converted to disabled placeholders with href="#" and onClick navigation prevention, cursor styled as not-allowed, and X icon switched to FaXTwitter.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related issues

Possibly related PRs

Suggested labels

level:intermediate, quality:clean

Poem

🐰 X marks the spot where Twitter was—
No more the bird, now comes the X with cause!
Discord and X sit quiet, can't be pressed,
Their links disabled, taking well-earned rest.
Icons imported fresh from fa6's nest.

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately captures the main change: replacing the outdated Twitter icon with X branding, which aligns with the primary modification in the changeset.
Description check ✅ Passed The PR description includes all required sections from the template with substantive content: description of changes, testing details, and type of change selection. It provides clear context and before/after screenshots.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
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

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/components/Footer.tsx`:
- Around line 173-181: The Discord anchor in the Footer component (the <a>
wrapping FaDiscord) was disabled by using href="#" and onClick preventing
default while keeping hover/transform classes and cursor-not-allowed; either
restore it to a real link by removing onClick, setting href to the intended
Discord URL (or prop) and removing the cursor-not-allowed/disabled hover
classes, or if it was intentionally disabled replace the anchor with a
non-interactive element (e.g., a <span> or a button-like element) and add
aria-disabled="true" / role="link" and remove hover/translate/scale classes to
avoid misleading UX and preserve semantic accessibility.
- Around line 163-171: The X/Twitter anchor was unintentionally disabled: remove
the href="#" and onClick preventDefault and restore the real profile URL (or a
prop/constant used for social links) and remove the opacity-70
cursor-not-allowed class if you intend the link to be active (target the <a>
that renders <FaXTwitter/>). If the disable was intentional, replace the <a>
with a non-interactive element (e.g., a <span> or a <button disabled>) instead
of using href="#" + preventDefault, remove hover:-translate-y-1 and
hover:scale-110 from its class list, add aria-disabled="true" and update the PR
description to explain the behavioral change.
- Line 12: The Footer.tsx import for the X/Twitter icon is incorrect and the
disabled social links are using link semantics with active hover transforms;
replace the incorrect import on the Fa import line by importing the correct
named export from react-icons/fa6 that matches Font Awesome’s “x-twitter” icon
(e.g., the proper FaX or FaTwitter export — confirm the exact export name from
react-icons and update the import in the Footer component), and change the
X/Twitter and Discord disabled <a> elements (the social link markup inside the
Footer component) to non-link accessible controls: remove the hover transform
classes (hover:-translate-y-1 hover:scale-110) from the disabled items, convert
them to either a <span> or a <button> with aria-disabled="true" and
tabIndex={-1} (or a disabled button) so they are non-focusable and convey
disabled semantics, and ensure any onClick handlers no longer call
preventDefault for those disabled items.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: d27d82e8-b3fa-4710-ad45-008e3c077513

📥 Commits

Reviewing files that changed from the base of the PR and between 9d34c19 and f8a31c9.

📒 Files selected for processing (1)
  • src/components/Footer.tsx

Comment thread src/components/Footer.tsx
FaInfoCircle,
} from 'react-icons/fa';

import { FaXTwitter } from 'react-icons/fa6';
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify FaXTwitter is exported from react-icons/fa6

# Check if FaXTwitter is available in the installed react-icons package
node -e "
try {
  const { FaXTwitter } = require('react-icons/fa6');
  if (FaXTwitter) {
    console.log('✓ FaXTwitter is available in react-icons/fa6');
    process.exit(0);
  } else {
    console.log('✗ FaXTwitter is not exported from react-icons/fa6');
    process.exit(1);
  }
} catch (e) {
  console.log('✗ Error loading FaXTwitter:', e.message);
  process.exit(1);
}
"

Repository: GitMetricsLab/github_tracker

Length of output: 180


🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Show Footer implementation around the X/Twitter + Discord portions
echo "---- src/components/Footer.tsx (relevant excerpt) ----"
if [ -f src/components/Footer.tsx ]; then
  # Print with line numbers, but keep output bounded
  nl -ba src/components/Footer.tsx | sed -n '1,220p'
else
  echo "Missing file: src/components/Footer.tsx"
fi

# Check declared react-icons version
echo "---- react-icons version (package.json / lockfiles) ----"
if [ -f package.json ]; then
  cat package.json
fi

if ls package-lock.json yarn.lock pnpm-lock.yaml >/dev/null 2>&1; then
  for f in package-lock.json yarn.lock pnpm-lock.yaml; do
    if [ -f "$f" ]; then
      echo "---- $f (react-icons references) ----"
      rg -n "react-icons" "$f" || true
    fi
  done
fi

# Quick check for dependency install presence (to interpret the earlier require failure)
echo "---- node_modules/react-icons presence ----"
ls -la node_modules/react-icons 2>/dev/null || echo "node_modules/react-icons not present"
ls -la node_modules 2>/dev/null | head -n 50 || true

Repository: GitMetricsLab/github_tracker

Length of output: 188


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "---- src/components/Footer.tsx (lines 1-220) ----"
if [ -f src/components/Footer.tsx ]; then
  # Prefer cat -n (available) over nl
  cat -n src/components/Footer.tsx | sed -n '1,220p'
else
  echo "Missing file: src/components/Footer.tsx"
fi

echo "---- package.json ----"
if [ -f package.json ]; then
  cat package.json
else
  echo "Missing package.json"
fi

echo "---- lockfiles with react-icons references (if any) ----"
for f in package-lock.json yarn.lock pnpm-lock.yaml; do
  if [ -f "$f" ]; then
    echo "---- $f ----"
    rg -n "react-icons" "$f" || true
  fi
done

echo "---- node_modules presence (sandbox) ----"
if [ -d node_modules ]; then
  ls -la node_modules | head -n 50
  if [ -d node_modules/react-icons ]; then
    echo "react-icons dir exists"
    ls -la node_modules/react-icons | head -n 50
  else
    echo "node_modules/react-icons not present"
  fi
else
  echo "node_modules directory missing"
fi

echo "---- Try resolve react-icons/fa6 path (no require) ----"
node -e "
try {
  const path = require.resolve('react-icons/package.json');
  console.log('react-icons package.json resolved to:', path);
} catch (e) {
  console.log('Cannot resolve react-icons package.json:', e.message);
  process.exit(0);
}
"

Repository: GitMetricsLab/github_tracker

Length of output: 10567


🌐 Web query:

react-icons fa6 FaXTwitter exported

💡 Result:

react-icons (Font Awesome 6 set) does not export a component named FaXTwitter. In react-icons, Font Awesome 6 icons are exported from the react-icons/fa6 entrypoint, and the available icon components follow the Font Awesome icon names as Fa[IconName] for Font Awesome 6 [1][2]. For the Twitter/X “X” brand icon specifically, Font Awesome added the x-twitter icon in version 6.4.2 [3]. Therefore, in react-icons you should use the Fa* component that corresponds to Font Awesome’s x-twitter icon name (i.e., the Font Awesome-derived React component name), not FaXTwitter [3][2]. If you’re trying to find the exact exported identifier, the reliable approach is to search the react-icons site’s icon directory for “x-twitter” or “twitter x” and check which component name it lists for the fa6 set [4][5].

Citations:


Fix FaXTwitter import and disabled social-link semantics/UX in Footer.tsx.

  • FaXTwitter is not exported from react-icons/fa6; update the import to the fa6 component that corresponds to Font Awesome’s x-twitter icon (line 12).
  • X/Twitter and Discord are “disabled” <a href="#"> elements that still run hover animations (hover:-translate-y-1 hover:scale-110) and use preventDefault, which is confusing and non-semantic—remove hover transforms when disabled and switch to proper disabled semantics (e.g., non-link element with aria-disabled/tabIndex, or a disabled <button>) (lines 164-181).
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/components/Footer.tsx` at line 12, The Footer.tsx import for the
X/Twitter icon is incorrect and the disabled social links are using link
semantics with active hover transforms; replace the incorrect import on the Fa
import line by importing the correct named export from react-icons/fa6 that
matches Font Awesome’s “x-twitter” icon (e.g., the proper FaX or FaTwitter
export — confirm the exact export name from react-icons and update the import in
the Footer component), and change the X/Twitter and Discord disabled <a>
elements (the social link markup inside the Footer component) to non-link
accessible controls: remove the hover transform classes (hover:-translate-y-1
hover:scale-110) from the disabled items, convert them to either a <span> or a
<button> with aria-disabled="true" and tabIndex={-1} (or a disabled button) so
they are non-focusable and convey disabled semantics, and ensure any onClick
handlers no longer call preventDefault for those disabled items.

Comment thread src/components/Footer.tsx
Comment on lines +163 to 171
{/* X / Twitter */}
<a
href="https://x.com/your_handle"
target="_blank"
rel="noopener noreferrer"
className="text-zinc-400 dark:text-zinc-500 hover:text-sky-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110"
aria-label="Twitter"
href="#"
onClick={(e) => e.preventDefault()}
className="text-zinc-600 dark:text-zinc-400 hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
aria-label="X"
>
<FaTwitter className="h-6 w-6" />
<FaXTwitter className="h-6 w-6" />
</a>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major | 🏗️ Heavy lift

Critical: Undocumented functional change - X/Twitter link is now disabled.

The PR description states this change "maintains existing hover effects and footer styling" and only updates the icon branding. However, the implementation disables the link entirely by:

  • Changing href to "#"
  • Adding onClick={(e) => e.preventDefault()}
  • Applying opacity-70 cursor-not-allowed

This is a breaking functional change that prevents users from navigating to the X/Twitter profile. This was not mentioned in the PR objectives, testing notes, or description.

Additional concerns:

  1. Confusing UX: The link retains hover animations (hover:-translate-y-1 hover:scale-110) while being disabled, suggesting it's interactive when it's not.

  2. Accessibility: Using href="#" with preventDefault is not semantic for disabled states. Better patterns include:

    • Remove the link entirely and use a <span> with appropriate ARIA attributes
    • Use a <button disabled> if you want to keep it as an interactive element
    • Or simply remove the icon until the social profile is ready

Recommendation: Either restore the link functionality (if this was unintentional) or remove the hover effects and clarify this functional change in the PR description.

♻️ Option 1: Remove hover effects from disabled link
             <a
               href="#"
               onClick={(e) => e.preventDefault()}
-              className="text-zinc-600 dark:text-zinc-400 hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
+              className="text-zinc-600 dark:text-zinc-400 opacity-70 cursor-not-allowed"
               aria-label="X"
             >
               <FaXTwitter className="h-6 w-6" />
             </a>
♻️ Option 2: Use semantic disabled pattern with span
-            <a
-              href="#"
-              onClick={(e) => e.preventDefault()}
-              className="text-zinc-600 dark:text-zinc-400 hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
-              aria-label="X"
-            >
+            <span
+              className="text-zinc-600 dark:text-zinc-400 opacity-70 cursor-not-allowed"
+              aria-label="X (coming soon)"
+              role="img"
+            >
               <FaXTwitter className="h-6 w-6" />
-            </a>
+            </span>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
{/* X / Twitter */}
<a
href="https://x.com/your_handle"
target="_blank"
rel="noopener noreferrer"
className="text-zinc-400 dark:text-zinc-500 hover:text-sky-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110"
aria-label="Twitter"
href="#"
onClick={(e) => e.preventDefault()}
className="text-zinc-600 dark:text-zinc-400 hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
aria-label="X"
>
<FaTwitter className="h-6 w-6" />
<FaXTwitter className="h-6 w-6" />
</a>
{/* X / Twitter */}
<a
href="#"
onClick={(e) => e.preventDefault()}
className="text-zinc-600 dark:text-zinc-400 opacity-70 cursor-not-allowed"
aria-label="X"
>
<FaXTwitter className="h-6 w-6" />
</a>
Suggested change
{/* X / Twitter */}
<a
href="https://x.com/your_handle"
target="_blank"
rel="noopener noreferrer"
className="text-zinc-400 dark:text-zinc-500 hover:text-sky-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110"
aria-label="Twitter"
href="#"
onClick={(e) => e.preventDefault()}
className="text-zinc-600 dark:text-zinc-400 hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
aria-label="X"
>
<FaTwitter className="h-6 w-6" />
<FaXTwitter className="h-6 w-6" />
</a>
{/* X / Twitter */}
<span
className="text-zinc-600 dark:text-zinc-400 opacity-70 cursor-not-allowed"
aria-label="X (coming soon)"
role="img"
>
<FaXTwitter className="h-6 w-6" />
</span>
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/components/Footer.tsx` around lines 163 - 171, The X/Twitter anchor was
unintentionally disabled: remove the href="#" and onClick preventDefault and
restore the real profile URL (or a prop/constant used for social links) and
remove the opacity-70 cursor-not-allowed class if you intend the link to be
active (target the <a> that renders <FaXTwitter/>). If the disable was
intentional, replace the <a> with a non-interactive element (e.g., a <span> or a
<button disabled>) instead of using href="#" + preventDefault, remove
hover:-translate-y-1 and hover:scale-110 from its class list, add
aria-disabled="true" and update the PR description to explain the behavioral
change.

Comment thread src/components/Footer.tsx
Comment on lines +173 to 181
{/* Discord */}
<a
href="https://discord.gg/your_invite"
target="_blank"
rel="noopener noreferrer"
className="text-zinc-400 dark:text-zinc-500 hover:text-indigo-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110"
href="#"
onClick={(e) => e.preventDefault()}
className="text-zinc-600 dark:text-zinc-400 hover:text-indigo-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
aria-label="Discord"
>
<FaDiscord className="h-6 w-6" />
</a>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major | 🏗️ Heavy lift

Critical: Undocumented functional change - Discord link is now disabled.

The Discord link has been disabled in the exact same manner as the X/Twitter link, but this change is completely undocumented in the PR description. The PR title is "Replaced outdated twitter icon with X branding" and makes no mention of Discord.

This creates the same issues as the X/Twitter link:

  • Breaking functional change not mentioned in PR objectives
  • Hover effects remain on a disabled link (confusing UX)
  • Non-semantic accessibility pattern with href="#" and preventDefault

Action required:

  • If disabling Discord is intentional, update the PR description to document this change
  • If unintentional, restore the Discord link to its original functional state
  • Either way, remove hover effects from disabled links or use a semantic disabled pattern
♻️ Remove hover effects from disabled Discord link
             <a
               href="#"
               onClick={(e) => e.preventDefault()}
-              className="text-zinc-600 dark:text-zinc-400 hover:text-indigo-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
+              className="text-zinc-600 dark:text-zinc-400 opacity-70 cursor-not-allowed"
               aria-label="Discord"
             >
               <FaDiscord className="h-6 w-6" />
             </a>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
{/* Discord */}
<a
href="https://discord.gg/your_invite"
target="_blank"
rel="noopener noreferrer"
className="text-zinc-400 dark:text-zinc-500 hover:text-indigo-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110"
href="#"
onClick={(e) => e.preventDefault()}
className="text-zinc-600 dark:text-zinc-400 hover:text-indigo-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
aria-label="Discord"
>
<FaDiscord className="h-6 w-6" />
</a>
{/* Discord */}
<a
href="#"
onClick={(e) => e.preventDefault()}
className="text-zinc-600 dark:text-zinc-400 opacity-70 cursor-not-allowed"
aria-label="Discord"
>
<FaDiscord className="h-6 w-6" />
</a>
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/components/Footer.tsx` around lines 173 - 181, The Discord anchor in the
Footer component (the <a> wrapping FaDiscord) was disabled by using href="#" and
onClick preventing default while keeping hover/transform classes and
cursor-not-allowed; either restore it to a real link by removing onClick,
setting href to the intended Discord URL (or prop) and removing the
cursor-not-allowed/disabled hover classes, or if it was intentionally disabled
replace the anchor with a non-interactive element (e.g., a <span> or a
button-like element) and add aria-disabled="true" / role="link" and remove
hover/translate/scale classes to avoid misleading UX and preserve semantic
accessibility.

@mehul-m-prajapati mehul-m-prajapati merged commit 1f2f35c into GitMetricsLab:main May 23, 2026
1 of 6 checks passed
@github-actions
Copy link
Copy Markdown

🎉🎉 Thank you for your contribution! Your PR #396 has been merged! 🎉🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants