implemented lifetimes properly
All checks were successful
/ Quality Check (push) Successful in 1m38s
/ Build (push) Successful in 1m57s

This commit is contained in:
Phani Pavan K
2025-11-02 08:20:44 +05:30
parent 26202cd7d2
commit 7b11193b15
5 changed files with 14 additions and 11 deletions

View File

@@ -4,7 +4,7 @@ use ratatui::{
widgets::{Block, Borders, Paragraph, Wrap},
};
pub fn getExitPara() -> Paragraph<'static> {
pub fn getExitPara<'a>() -> Paragraph<'a> {
let exitPopup = Block::default()
.title("Exit Window")
.borders(Borders::ALL)