Skip to content

fix(frontend): Line breaks on tools pages, descriptions are sentenced per line#516

Open
OluRemiFour wants to merge 3 commits into
interledger:mainfrom
OluRemiFour:fix/Add-line-breaks-on-tools-descriptions
Open

fix(frontend): Line breaks on tools pages, descriptions are sentenced per line#516
OluRemiFour wants to merge 3 commits into
interledger:mainfrom
OluRemiFour:fix/Add-line-breaks-on-tools-descriptions

Conversation

@OluRemiFour
Copy link
Copy Markdown

All tool pages already had proper description formatting with one sentence per line.

@DarianM DarianM linked an issue Jan 15, 2026 that may be closed by this pull request
@DarianM DarianM self-requested a review January 15, 2026 08:00
Comment thread frontend/app/components/redesign/components/header/MobileMenu.tsx Outdated
Comment thread package.json
@DarianM DarianM changed the title Fix Line breaks on tools pages, descriptions are sentenced per line fix(frontend): Line breaks on tools pages, descriptions are sentenced per line Jan 20, 2026
Copy link
Copy Markdown
Member

@DarianM DarianM left a comment

Choose a reason for hiding this comment

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

ok-to-deploy

Copy link
Copy Markdown
Member

@sidvishnoi sidvishnoi left a comment

Choose a reason for hiding this comment

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

Hi @OluRemiFour. Sorry for delays in review.
Can you remove the unrelated changes from this PR, so we can merge with newlines related improvements?

Comment thread frontend/app/root.tsx
Comment on lines -45 to +50
const error = useRouteError()
let error: unknown
try {
error = useRouteError()
} catch (e) {
error = e
}
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Let's remove these unrelated changes.

Comment thread frontend/worker.ts
Comment on lines +27 to +35

if (url.pathname === '/favicon.ico') {
return new Response(null, { status: 404 })
}

if (!url.pathname.startsWith(APP_BASEPATH)) {
return new Response(null, { status: 404 })
}

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Let's remove these unrelated changes.

Comment on lines -113 to +114
export const useUIState = (): UIState => {
const state = useContext(UIStateContext)
if (!state) {
throw new Error('useUIState must be used within a UIProvider')
}
return state
export const useUIState = (): UIState | undefined => {
return useContext(UIStateContext)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Let's remove these unrelated changes.

Comment on lines +1 to 3


type NavLinkProps = {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Suggested change
type NavLinkProps = {
type NavLinkProps = {

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.

[Enhancement] Add line breaks on tools descriptions

3 participants